Skip to content

Commit

Permalink
test(@angular/cli): disable NPM 7 with Node v10 test
Browse files Browse the repository at this point in the history
NPM 7 doesn't support Node v10, so this test will always fail.
  • Loading branch information
dgp1130 committed Dec 7, 2021
1 parent 21a49e6 commit 3230d0f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/legacy-cli/e2e/tests/misc/npm-7.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ export default async function () {
return;
}

// NPM 7 doesn't support Node v10.
if (process.version.startsWith('v10')) {
return;
}

const currentDirectory = process.cwd();

const extraArgs = [];
Expand Down

0 comments on commit 3230d0f

Please sign in to comment.