Skip to content

Commit 268baf8

Browse files
committed
disable webpack e2e on Windows.
1 parent 8126231 commit 268baf8

File tree

1 file changed

+5
-0
lines changed
  • tests/e2e/tests/packages/webpack

1 file changed

+5
-0
lines changed

tests/e2e/tests/packages/webpack/test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ import {expectFileSizeToBeUnder} from '../../../utils/fs';
88
export default function(argv: any, skipCleaning: () => void) {
99
const currentDir = process.cwd();
1010

11+
if (process.platform.startsWith('win')) {
12+
// Disable the test on Windows.
13+
return Promise.resolve();
14+
}
15+
1116
return Promise.resolve()
1217
.then(() => copyAssets('webpack/test-app'))
1318
.then(dir => process.chdir(dir))

0 commit comments

Comments
 (0)