test(@angular/cli): add update test from version 12 to 13

This is needed as updating multiple major versions of `@angular/cli`  and `@angular/core` at once is not supported therefore an update from 12 to 14 will fail.
This commit is contained in:
Alan Agius 2022-01-27 08:56:01 +01:00 committed by Douglas Parker
parent 987c83f762
commit d64ef88a30

View File

@ -25,6 +25,9 @@ export default async function () {
// Update Angular to 12
await ng('update', '@angular/cli@12', '@angular/core@12');
// Update Angular to 13
await ng('update', '@angular/cli@13', '@angular/core@13');
} finally {
await setRegistry(true);
}