We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c515d24 + 78eb561 commit 2f64fc9Copy full SHA for 2f64fc9
src/tests.webpack.js
@@ -4,5 +4,7 @@
4
import 'angular';
5
import 'angular-mocks/angular-mocks';
6
7
-var testsContext = require.context(".", true, /.spec$/);
8
-testsContext.keys().forEach(testsContext);
+const context = require.context('./app', true, /\.js$/);
+
9
+context.keys().forEach(context);
10
0 commit comments