Skip to content

Commit 78eb561

Browse files
author
phra
committed
explicitly include all source code, fixes #8
1 parent c515d24 commit 78eb561

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Diff for: src/tests.webpack.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,7 @@
44
import 'angular';
55
import 'angular-mocks/angular-mocks';
66

7-
var testsContext = require.context(".", true, /.spec$/);
8-
testsContext.keys().forEach(testsContext);
7+
const context = require.context('./app', true, /\.js$/);
8+
9+
context.keys().forEach(context);
10+

0 commit comments

Comments
 (0)