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 2fbeb04 commit e8824b0Copy full SHA for e8824b0
tests/legacy-cli/e2e/tests/update/update-9.ts
@@ -13,6 +13,8 @@ export default async function () {
13
await setRegistry(false);
14
await installWorkspacePackages();
15
16
+ process.env['NG_DISABLE_VERSION_CHECK'] = '1';
17
+
18
// Update Angular to 10
19
await installPackage('@angular/cli@9');
20
const { stdout } = await ng('update', '@angular/cli@10.x', '@angular/core@10.x');
@@ -23,6 +25,8 @@ export default async function () {
23
25
// Update Angular to 11
24
26
await ng('update', '@angular/cli@11', '@angular/core@11');
27
28
+ delete process.env['NG_DISABLE_VERSION_CHECK'];
29
30
// Update Angular to 12
31
await ng('update', '@angular/cli@12', '@angular/core@12');
32
} finally {
0 commit comments