File tree 1 file changed +5
-3
lines changed
tests/e2e/tests/build/styles
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -53,8 +53,9 @@ export default function () {
53
53
` ) )
54
54
. then ( ( ) => expectFileToMatch ( 'dist/index.html' , oneLineTrim `
55
55
<script type="text/javascript" src="inline.bundle.js"></script>
56
- <script type="text/javascript" src="vendor .bundle.js"></script>
56
+ <script type="text/javascript" src="polyfills .bundle.js"></script>
57
57
<script type="text/javascript" src="common-entry.bundle.js"></script>
58
+ <script type="text/javascript" src="vendor.bundle.js"></script>
58
59
<script type="text/javascript" src="main.bundle.js"></script>
59
60
` ) )
60
61
// also check when css isn't extracted
@@ -70,10 +71,11 @@ export default function () {
70
71
// index.html lists the right bundles
71
72
. then ( ( ) => expectFileToMatch ( 'dist/index.html' , oneLineTrim `
72
73
<script type="text/javascript" src="inline.bundle.js"></script>
73
- <script type="text/javascript" src="renamed-style.bundle.js"></script>
74
+ <script type="text/javascript" src="polyfills.bundle.js"></script>
75
+ <script type="text/javascript" src="common-entry.bundle.js"></script>
74
76
<script type="text/javascript" src="styles.bundle.js"></script>
77
+ <script type="text/javascript" src="renamed-style.bundle.js"></script>
75
78
<script type="text/javascript" src="vendor.bundle.js"></script>
76
- <script type="text/javascript" src="common-entry.bundle.js"></script>
77
79
<script type="text/javascript" src="main.bundle.js"></script>
78
80
` ) ) ;
79
81
}
You can’t perform that action at this time.
0 commit comments