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 56d87dd commit 9ccc6f9Copy full SHA for 9ccc6f9
tests/legacy-cli/e2e/tests/misc/npm-7.ts
@@ -10,6 +10,11 @@ export default async function() {
10
return;
11
}
12
13
+ // Windows CI fails with permission errors when trying to replace npm
14
+ if (process.platform.startsWith('win')) {
15
+ return;
16
+ }
17
+
18
const currentDirectory = process.cwd();
19
try {
20
// Install version 7.x
0 commit comments