Skip to content

Commit 1995ec9

Browse files
committed
rename tests to use .spec instead of .test
1 parent 9d98703 commit 1995ec9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ module.exports = function karmaConfig (config) {
1818
],
1919

2020
files: [
21-
// Grab all files in the app folder that contain .test.
21+
// Grab all files in the app folder that contain .spec.
2222
'src/tests.webpack.js'
2323
],
2424

src/tests.webpack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
import 'angular';
55
import 'angular-mocks/angular-mocks';
66

7-
var testsContext = require.context(".", true, /.test$/);
7+
var testsContext = require.context(".", true, /.spec$/);
88
testsContext.keys().forEach(testsContext);

0 commit comments

Comments
 (0)