Skip to content

Commit

Permalink
fix(test): remove not used polyfill
Browse files Browse the repository at this point in the history
  • Loading branch information
klarkc committed Oct 29, 2017
1 parent 49573ef commit fa0eefd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions template/gulp-tasks/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@ gulp.task('test:server', () => {

gulp.task('test:client', (done) => {
new Server({
files: [
'node_modules/babel-polyfill/dist/polyfill.js',
path.resolve(dirs.testClient, '**/*.test.js'),
],
files: [path.resolve(dirs.testClient, '**/*.test.js')],
configFile: path.resolve(dirs.test, 'karma.conf.js'),
singleRun: true,
}, done).start();
Expand Down

0 comments on commit fa0eefd

Please sign in to comment.