Skip to content

Commit

Permalink
ci(angular): add e2e test with angular 13.0 and 13.x
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaudAV committed Jan 11, 2022
1 parent 1f1999f commit ccf3dc4
Show file tree
Hide file tree
Showing 3 changed files with 247 additions and 54 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -222,7 +222,7 @@ jobs:
# 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
# TODO: Add `angular` as soon as Storybook is compatible with Angular 13
command: yarn test:e2e-framework vue3 angular12 angular11 web_components_typescript web_components_lit2
command: yarn test:e2e-framework vue3 angular130 angular13 angular12 angular11 web_components_typescript web_components_lit2
no_output_timeout: 5m
- store_artifacts:
path: /tmp/cypress-record
Expand Down
12 changes: 12 additions & 0 deletions lib/cli/src/repro-generators/configs.ts
Expand Up @@ -117,6 +117,18 @@ export const angular12: Parameters = {
version: 'v12-lts',
};

export const angular130: Parameters = {
...baseAngular,
name: 'angular130',
version: '13.0.x',
};

export const angular13: Parameters = {
...baseAngular,
name: 'angular13',
version: 'latest',
};

export const angular: Parameters = baseAngular;
// #endregion

Expand Down

0 comments on commit ccf3dc4

Please sign in to comment.