You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cli/CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,7 @@ _Released 07/01/2025 (PENDING)_
6
6
**Breaking Changes:**
7
7
8
8
- Removed support for Angular 17. The minimum supported version is now `18.0.0`. Addresses [#31303](https://github.com/cypress-io/cypress/issues/31303).
9
+
-`@cypress/angular` now requires a minimum of `zone.js``0.14.0`. Addresses [#31582](https://github.com/cypress-io/cypress/issues/31582).
9
10
- Removed support for Node.js 18 and Node.js 23. Addresses [#31302](https://github.com/cypress-io/cypress/issues/31302).
10
11
- Removed support for [Chrome DevTools Protocol](https://chromedevtools.github.io/devtools-protocol) with the [firefox](https://www.mozilla.org/) browser. Addresses [#31189](https://github.com/cypress-io/cypress/issues/31189).
11
12
- Removed support of the deprecated 3 argument signature of `cy.stub`. Use `cy.stub(object, name).callsFake(fn)` instead. Addresses [#31346](https://github.com/cypress-io/cypress/issues/31346).
Copy file name to clipboardExpand all lines: npm/angular/src/mount.ts
-6Lines changed: 0 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -123,12 +123,6 @@ export type MountResponse<T> = {
123
123
component: T
124
124
};
125
125
126
-
// 'zone.js/testing' is not properly aliasing `it.skip` but it does provide `xit`/`xspecify`
127
-
// Written up under https://github.com/angular/angular/issues/46297 but is not seeing movement
128
-
// so we'll patch here pending a fix in that library
129
-
// @ts-ignore Ignore so that way we can bypass semantic error TS7017: Element implicitly has an 'any' type because type 'typeof globalThis' has no index signature.
0 commit comments