Skip to content

Commit 4d352eb

Browse files
chore: update CT docs and migration guide (#6248)
* chore: update docs with supported angular versions, webpack versions, and migration guide helpers * fix linter issues --------- Co-authored-by: Jennifer Shehane <[email protected]>
1 parent ccc2173 commit 4d352eb

File tree

4 files changed

+19
-13
lines changed

4 files changed

+19
-13
lines changed

docs/app/component-testing/angular/overview.mdx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,12 @@ sidebar_label: Overview
2020

2121
## Framework Support
2222

23-
Cypress Component Testing supports Angular `^18.0.0` and `^19.0.0`.
23+
Cypress Component Testing supports Angular `^18.0.0`, `^19.0.0`, and `^20.0.0`.
24+
25+
:::info
26+
27+
Our testing harness, `cypress/angular`, still requires `zone.js` and `@angular-devkit/build-angular` to be installed in your project, even if your project is zoneless or is built with `@angular/build`.
28+
:::
2429

2530
## Tutorial
2631

@@ -125,4 +130,4 @@ export default {
125130
#### Sample Angular Apps
126131

127132
- [Angular 18](https://github.com/cypress-io/cypress-component-testing-apps/tree/main/angular)
128-
- [Angular 19 Standalone](https://github.com/cypress-io/cypress-component-testing-apps/tree/main/angular-standalone)
133+
- [Angular 20 Standalone](https://github.com/cypress-io/cypress-component-testing-apps/tree/main/angular-standalone)

docs/app/component-testing/get-started.mdx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@ Cypress currently has official mounting libraries for
4040
[Svelte](/app/component-testing/svelte/overview) and support for the
4141
following development servers and frameworks:
4242

43-
| Framework | UI Library | Bundler |
44-
| ------------------------------------------------------------------------------------------------------------------ | ------------- | ----------- |
45-
| [React with Vite](/app/component-testing/react/overview#React-with-Vite) | React 18-19 | Vite 5-7 |
46-
| [React with Webpack](/app/component-testing/react/overview#React-with-Webpack) | React 18-19 | Webpack 4-5 |
47-
| [Next.js 14-15](/app/component-testing/react/overview#Nextjs) | React 18-19 | Webpack 5 |
48-
| [Vue with Vite](/app/component-testing/vue/overview#Vue-with-Vite) | Vue 3 | Vite 5-7 |
49-
| [Vue with Webpack](/app/component-testing/vue/overview#Vue-with-Webpack) | Vue 3 | Webpack 4-5 |
50-
| [Angular](/app/component-testing/angular/overview#Framework-Configuration) | Angular 18-19 | Webpack 5 |
51-
| [Svelte with Vite](/app/component-testing/svelte/overview#Svelte-with-Vite) <Badge type="info">Alpha</Badge> | Svelte 5 | Vite 5-7 |
52-
| [Svelte with Webpack](/app/component-testing/svelte/overview#Svelte-with-Webpack) <Badge type="info">Alpha</Badge> | Svelte 5 | Webpack 4-5 |
43+
| Framework | UI Library | Bundler |
44+
| ------------------------------------------------------------------------------------------------------------------ | ------------- | --------- |
45+
| [React with Vite](/app/component-testing/react/overview#React-with-Vite) | React 18-19 | Vite 5-7 |
46+
| [React with Webpack](/app/component-testing/react/overview#React-with-Webpack) | React 18-19 | Webpack 5 |
47+
| [Next.js 14-15](/app/component-testing/react/overview#Nextjs) | React 18-19 | Webpack 5 |
48+
| [Vue with Vite](/app/component-testing/vue/overview#Vue-with-Vite) | Vue 3 | Vite 5-7 |
49+
| [Vue with Webpack](/app/component-testing/vue/overview#Vue-with-Webpack) | Vue 3 | Webpack 5 |
50+
| [Angular](/app/component-testing/angular/overview#Framework-Configuration) | Angular 18-20 | Webpack 5 |
51+
| [Svelte with Vite](/app/component-testing/svelte/overview#Svelte-with-Vite) <Badge type="info">Alpha</Badge> | Svelte 5 | Vite 5-7 |
52+
| [Svelte with Webpack](/app/component-testing/svelte/overview#Svelte-with-Webpack) <Badge type="info">Alpha</Badge> | Svelte 5 | Webpack 5 |
5353

5454
The following integrations are built and maintained by Cypress community members.
5555

docs/app/references/changelog.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ sidebar_label: Changelog
1212

1313
_Released 7/29/2025 (PENDING)_
1414

15-
1615
## 14.5.4
1716

1817
_Released 8/07/2025_

docs/app/references/migration-guide.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ module.exports = (on) => {
119119
on(
120120
'file:preprocessor',
121121
webpackPreprocessor({
122+
// if using typescript, you will need to set the typescript option to true
123+
typescript: true,
122124
webpackOptions: getWebpackOptions(),
123125
})
124126
)

0 commit comments

Comments
 (0)