Skip to content

Commit

Permalink
Fix test for newer webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
shama committed Jul 30, 2018
1 parent d281bda commit d820cf2
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions test/test.js
Expand Up @@ -69,12 +69,15 @@ test('subsequent runs served from cache', function (t) {
t.plan(4);

var config = {
entry: {
'one': path.join(base, 'entry.js'),
'two': path.join(base, 'anotherentrypoint.js')
},
output: {
filename: '[name].bundle.js'
config: {
mode: 'development',
entry: {
'one': path.join(base, 'entry.js'),
'two': path.join(base, 'anotherentrypoint.js')
},
output: {
filename: '[name].bundle.js'
}
},
quiet: true
};
Expand Down

0 comments on commit d820cf2

Please sign in to comment.