Skip to content

Commit b03ac69

Browse files
fix: missing auxiliary assets
1 parent 2115ab1 commit b03ac69

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/TestCases.test.js

+5
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,11 @@ describe('TestCases', () => {
9090
clearDirectory(outputDirectory);
9191

9292
for (const directory of tests) {
93+
if (directory === 'auxiliaryAssets' && webpack.version[0] === '4') {
94+
// eslint-disable-next-line no-continue
95+
continue;
96+
}
97+
9398
if (!/^(\.|_)/.test(directory)) {
9499
// eslint-disable-next-line no-loop-func
95100
it(`${directory} should compile to the expected result`, (done) => {

0 commit comments

Comments
 (0)