File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 17
17
18
18
const karmaBase = require ( '../../config/karma.base' ) ;
19
19
20
- const files = [ `src /**/*.test.ts` ] ;
20
+ const files = [ `test /**/*.test.ts` ] ;
21
21
22
22
module . exports = function ( config ) {
23
23
const karmaConfig = {
Original file line number Diff line number Diff line change 20
20
"test" : " yarn type-check && run-p lint test:browser test:node" ,
21
21
"test:ci" : " node ../../scripts/run_tests_in_ci.js" ,
22
22
"test:browser" : " karma start --single-run" ,
23
- "test:node" : " TS_NODE_COMPILER_OPTIONS='{\" module\" :\" commonjs\" }' nyc --reporter lcovonly -- mocha src /**/*.test.* --config ../../config/mocharc.node.js" ,
23
+ "test:node" : " TS_NODE_COMPILER_OPTIONS='{\" module\" :\" commonjs\" }' nyc --reporter lcovonly -- mocha test /**/*.test.* --config ../../config/mocharc.node.js" ,
24
24
"type-check" : " tsc -p . --noEmit" ,
25
25
"prepare" : " yarn build"
26
26
},
Original file line number Diff line number Diff line change 16
16
*/
17
17
18
18
import { expect } from 'chai' ;
19
- import { testFxn } from './index' ;
19
+ import { testFxn } from '../src /index' ;
20
20
21
21
describe ( 'Simple test' , ( ) => {
22
22
it ( 'Should skip this test' ) ;
You can’t perform that action at this time.
0 commit comments