-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix tabbing in loopback/index.js * Remove unused gherkin.ts in root test directory * Lexical order global type definitions * Group test dependencies (expect/sinon) into single global file in root test directory * Modify both mocha.opts to import single global file instead of expect/sinon separately
- Loading branch information
1 parent
0732f37
commit b0a4afc
Showing
7 changed files
with
13 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
export { | ||
Application, | ||
AppConfig, | ||
AppState | ||
} from './lib/application'; | ||
Application, | ||
AppConfig, | ||
AppState | ||
} from './lib/application'; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
declare var And : any; | ||
declare var expect : Function; | ||
declare var Feature : Function; | ||
declare var Scenario : any; | ||
declare var Given : any; | ||
declare var And : any; | ||
declare var When : any; | ||
declare var Scenario : any; | ||
declare var sinon : any; | ||
declare var Then : any; | ||
declare var sinon : any; | ||
declare var When : any; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
import chai = require('chai'); | ||
import dirtyChai = require('dirty-chai'); | ||
import sinon = require('sinon'); | ||
|
||
chai.use(dirtyChai); | ||
const expect = chai.expect; | ||
|
||
global['expect'] = expect; | ||
global['expect'] = chai.expect; | ||
global['sinon'] = sinon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
--require ../../test/ts-node.js | ||
--compilers ts:tsconfig-paths/register | ||
--require ../../test/gherkin.ts | ||
--require ../../test/expect.ts | ||
--require ../../test/sinon.ts | ||
--require ../../test/globals.ts | ||
--ui mocha-gherkin --reporter mocha-gherkin/build/spec | ||
test/black-box/**/*.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
--require ../../test/ts-node.js | ||
--compilers ts:tsconfig-paths/register | ||
--require ../../test/gherkin.ts | ||
--require ../../test/expect.ts | ||
--require ../../test/sinon.ts | ||
--require ../../test/globals.ts | ||
--ui tdd | ||
test/white-box/**/*.ts |
This file was deleted.
Oops, something went wrong.