We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9558c89 commit ce8c0dfCopy full SHA for ce8c0df
test/functional.js
@@ -652,6 +652,19 @@ describe('Functional tests using webpack', function() {
652
);
653
webpackAssert.assertOutputFileDoesNotContain('entrypoints.json', sharedEntryTmpName);
654
655
+ // make sure runtime.js is here
656
+ // but the _tmp_shared entry is NOT here
657
+ webpackAssert.assertOutputJsonFileMatches('entrypoints.json', {
658
+ main: {
659
+ js: ['runtime.js', 'shared.js', 'main.js'],
660
+ css: ['shared.css']
661
+ },
662
+ other: {
663
+ js: ['runtime.js', 'shared.js', 'other.js'],
664
665
666
+ });
667
+
668
testSetup.requestTestPage(
669
path.join(config.getContext(), 'www'),
670
[
0 commit comments