Skip to content

Commit b24d71f

Browse files
committed
fix(webpack): bypass tsc for test setup
1 parent afc0c68 commit b24d71f

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

webpack/test__if_jasmine_or_mocha_or_tape/all-spec.ext renamed to webpack/test__if_jasmine_or_mocha_or_tape/all-spec.js

File renamed without changes.

webpack/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module.exports = function(env/* @if jasmine || tape || mocha*/, { runTest }/* @e
3636
mode: production ? 'production' : 'development',
3737
devtool: production ? 'source-maps' : 'inline-source-map',
3838
// @if jasmine || tape || mocha
39-
entry: test ? './test/all-spec./* @if babel */js/* @endif *//* @if typescript */ts/* @endif */' : './src/main./* @if babel */js/* @endif *//* @if typescript */ts/* @endif */',
39+
entry: test ? './test/all-spec.js' : './src/main./* @if babel */js/* @endif *//* @if typescript */ts/* @endif */',
4040
// @endif
4141
// @if !jasmine && !tape && !mocha
4242
entry: './src/main./* @if babel */js/* @endif *//* @if typescript */ts/* @endif */',

0 commit comments

Comments
 (0)