Skip to content

Commit

Permalink
minor #650 Fix hashes in the "Copy with versioning enabled" test (Lyr…
Browse files Browse the repository at this point in the history
…kan)

This PR was merged into the master branch.

Discussion
----------

Fix hashes in the "Copy with versioning enabled" test

Fix a broken test on develop following the merge of #648.

Not sure why the main.js and runtime.js hashes changed, but their content stayed exactly the same.

Commits
-------

84561d9 Fix hashes in the "Copy with versioning enabled" test
  • Loading branch information
weaverryan committed Oct 9, 2019
2 parents 314be32 + 84561d9 commit f5a17a4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/functional.js
Original file line number Diff line number Diff line change
Expand Up @@ -1989,16 +1989,16 @@ module.exports = {
expect(config.outputPath).to.be.a.directory()
.with.files([
'entrypoints.json',
'runtime.e75311e7.js',
'main.3213b14e.js',
'runtime.d2591ff7.js',
'main.ceeddab6.js',
'manifest.json',
'symfony_logo.ea1ca6f7.png',
'symfony_logo_alt.f27119c2.png',
]);

webpackAssert.assertManifestPath(
'build/main.js',
'/build/main.3213b14e.js'
'/build/main.ceeddab6.js'
);
}

Expand Down

0 comments on commit f5a17a4

Please sign in to comment.