Skip to content

Commit

Permalink
test: webpack@4 is returning different result
Browse files Browse the repository at this point in the history
  • Loading branch information
mastilver committed Apr 8, 2018
1 parent 788a364 commit 41f1c26
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions spec/plugin.integration.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,13 @@ describe('ManifestPlugin using real fs', function() {
isFirstRun = false;
fse.outputFileSync(path.join(__dirname, 'output/watch-import-chunk/index.js'), 'import(\'./chunk1\')');
} else {
expect(manifest).toEqual({
expect(manifest).toEqual(isWebpack4({
'main.js': 'main.js',
'1.js': '1.js',
}, {
'main.js': 'main.js',
'3.js': '3.js',
});
}));

done();
}
Expand Down

0 comments on commit 41f1c26

Please sign in to comment.