File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,10 +7,10 @@ module.exports = function(config) {
7
7
frameworks : [ 'jasmine' ] ,
8
8
exclude : [ ] ,
9
9
files : [
10
- { pattern : './test /spec-bundle.js' , watched : false }
10
+ { pattern : './config /spec-bundle.js' , watched : false }
11
11
] ,
12
12
preprocessors : {
13
- './test /spec-bundle.js' : [ 'coverage' , 'webpack' , 'sourcemap' ]
13
+ './config /spec-bundle.js' : [ 'coverage' , 'webpack' , 'sourcemap' ]
14
14
} ,
15
15
webpack : testWebpackConfig ( { env : 'test' } ) ,
16
16
webpackMiddleware : { stats : 'errors-only' } ,
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ testing.TestBed.initTestEnvironment(
47
47
* any file that ends with spec.ts and get its path. By passing in true
48
48
* we say do this recursively
49
49
*/
50
- const testContext = require . context ( '../test ' , true , / \. s p e c \. t s / ) ;
50
+ const testContext = require . context ( '../src ' , true , / \. s p e c \. t s / ) ;
51
51
52
52
/*
53
53
* get all the files, for each file, call the context function
Original file line number Diff line number Diff line change 3
3
TestBed
4
4
} from '@angular/core/testing' ;
5
5
6
- import { DataTablePagerComponent } from '../../../src/components/footer ' ;
6
+ import { DataTablePagerComponent } from './pager.component ' ;
7
7
8
8
describe ( 'DataTablePagerComponent' , ( ) => {
9
9
let fixture ;
You can’t perform that action at this time.
0 commit comments