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 8126231 commit 268baf8Copy full SHA for 268baf8
tests/e2e/tests/packages/webpack/test.ts
@@ -8,6 +8,11 @@ import {expectFileSizeToBeUnder} from '../../../utils/fs';
8
export default function(argv: any, skipCleaning: () => void) {
9
const currentDir = process.cwd();
10
11
+ if (process.platform.startsWith('win')) {
12
+ // Disable the test on Windows.
13
+ return Promise.resolve();
14
+ }
15
+
16
return Promise.resolve()
17
.then(() => copyAssets('webpack/test-app'))
18
.then(dir => process.chdir(dir))
0 commit comments