Browse Source

Fix the webpack entry point

Steven Silvester 8 years ago
parent
commit
af412925b0
2 changed files with 2 additions and 2 deletions
  1. 1 1
      test/webpack-cov.conf.js
  2. 1 1
      test/webpack.conf.js

+ 1 - 1
test/webpack-cov.conf.js

@@ -1,7 +1,7 @@
 var path = require('path');
 
 module.exports = {
-  entry: './test/src/index.ts',
+  entry: './test/build/index.js',
   output: {
     path: __dirname + "/build",
     filename: "coverage.js",

+ 1 - 1
test/webpack.conf.js

@@ -1,7 +1,7 @@
 var path = require('path');
 
 module.exports = {
-  entry: './test/src/index.ts',
+  entry: './test/build/index.js',
   output: {
     path: __dirname + "/build",
     filename: "bundle.js",