remove angular 10 and 11

This commit is contained in:
Norbert de Langen 2022-06-07 09:29:03 +02:00
parent e53d85454e
commit fa14e30620
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
3 changed files with 3 additions and 29 deletions

View File

@ -183,7 +183,7 @@ jobs:
command: yarn wait-on http://localhost:6000
- run:
name: Run E2E (extended) tests
command: yarn test:e2e-framework --clean --all --skip angular11 --skip angular --skip angular12 --skip vue3 --skip web_components_typescript --skip cra --skip react
command: yarn test:e2e-framework --clean --all --skip angular --skip angular12 --skip vue3 --skip web_components_typescript --skip cra --skip react
no_output_timeout: 5m
- store_artifacts:
path: /tmp/cypress-record
@ -192,7 +192,7 @@ jobs:
executor:
class: large
name: sb_cypress_8_node_14
parallelism: 10
parallelism: 9
steps:
- git-shallow-clone/checkout_advanced:
clone_options: '--depth 1 --verbose'
@ -209,7 +209,7 @@ jobs:
name: Run E2E (core) tests
# Do not test CRA here because it's done in PnP part
# TODO: Remove `web_components_typescript` as soon as Lit 2 stable is released
command: yarn test:e2e-framework vue3 angular130 angular13 angular12 angular11 web_components_typescript web_components_lit2 react react_legacy_root_api vite_react
command: yarn test:e2e-framework vue3 angular130 angular13 angular12 web_components_typescript web_components_lit2 react react_legacy_root_api vite_react
no_output_timeout: 5m
- run:
name: prep artifacts

View File

@ -106,20 +106,6 @@ describe('angular12 fix', () => {
).resolves.toBeFalsy();
});
});
describe('angular11 dependency', () => {
it('should no-op', async () => {
await expect(
checkAngular12({
packageJson: {
dependencies: {
'@angular/core': '11',
},
},
main: {},
})
).resolves.toBeFalsy();
});
});
});
describe('sb 7.0+', () => {
describe('angular12 dependency', () => {

View File

@ -130,18 +130,6 @@ const baseAngular: Parameters = {
generator: `npx -p @angular/cli@{{version}} ng new {{appName}} --routing=true --minimal=true --style=scss --skipInstall=true --strict`,
};
export const angular10: Parameters = {
...baseAngular,
name: 'angular10',
version: 'v10-lts',
};
export const angular11: Parameters = {
...baseAngular,
name: 'angular11',
version: 'v11-lts',
};
export const angular12: Parameters = {
...baseAngular,
name: 'angular12',