Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Angular: Fix 13.1 and add CI test cases #17206

Merged
merged 3 commits into from Jan 12, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can maybe remove the comment of L224, as angular13 == angular

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: '13.1.x',
};

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

Expand Down