Skip to content

Commit 3230d0f

Browse files
committed
test(@angular/cli): disable NPM 7 with Node v10 test
NPM 7 doesn't support Node v10, so this test will always fail.
1 parent 21a49e6 commit 3230d0f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/legacy-cli/e2e/tests/misc/npm-7.ts

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ export default async function () {
1717
return;
1818
}
1919

20+
// NPM 7 doesn't support Node v10.
21+
if (process.version.startsWith('v10')) {
22+
return;
23+
}
24+
2025
const currentDirectory = process.cwd();
2126

2227
const extraArgs = [];

0 commit comments

Comments
 (0)