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

chore: add support for Angular 16 #26052

Merged
merged 5 commits into from
Apr 24, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove .only, add angular-16 to webpack-dev-server e2e tests
astone123 committed Apr 21, 2023
commit de3d8f01cfbbc55a8698c75e29867c0c6d802646
4 changes: 2 additions & 2 deletions npm/webpack-dev-server/cypress/e2e/angular.cy.ts
Original file line number Diff line number Diff line change
@@ -2,12 +2,12 @@
/// <reference path="../support/e2e.ts" />
import type { ProjectFixtureDir } from '@tooling/system-tests/lib/fixtureDirs'

const WEBPACK_REACT: ProjectFixtureDir[] = ['angular-13', 'angular-14', 'angular-15']
const WEBPACK_ANGULAR: ProjectFixtureDir[] = ['angular-13', 'angular-14', 'angular-15', 'angular-16']

// Add to this list to focus on a particular permutation
const ONLY_PROJECTS: ProjectFixtureDir[] = []

for (const project of WEBPACK_REACT) {
for (const project of WEBPACK_ANGULAR) {
if (ONLY_PROJECTS.length && !ONLY_PROJECTS.includes(project)) {
continue
}
2 changes: 1 addition & 1 deletion system-tests/test/component_testing_spec.ts
Original file line number Diff line number Diff line change
@@ -127,7 +127,7 @@ describe(`Angular CLI major versions`, () => {
spec = `${spec},!src/app/components/standalone.component.cy.ts`
}

systemTests.it.only(`v${majorVersion} with mount tests`, {
systemTests.it(`v${majorVersion} with mount tests`, {
project: `angular-${majorVersion}`,
spec,
testingType: 'component',