diff --git a/docs/app/component-testing/get-started.mdx b/docs/app/component-testing/get-started.mdx index 6f39f293d6..5a91c0c125 100644 --- a/docs/app/component-testing/get-started.mdx +++ b/docs/app/component-testing/get-started.mdx @@ -40,9 +40,9 @@ following development servers and frameworks: | Framework | UI Library | Bundler | | ------------------------------------------------------------------------------------------------------------------ | ------------- | ----------- | -| [React with Vite](/app/component-testing/react/overview#React-with-Vite) | React 18 | Vite 4-5 | -| [React with Webpack](/app/component-testing/react/overview#React-with-Webpack) | React 18 | Webpack 4-5 | -| [Next.js 14](/app/component-testing/react/overview#Nextjs) | React 18 | Webpack 5 | +| [React with Vite](/app/component-testing/react/overview#React-with-Vite) | React 18-19 | Vite 4-5 | +| [React with Webpack](/app/component-testing/react/overview#React-with-Webpack) | React 18-19 | Webpack 4-5 | +| [Next.js 14-15](/app/component-testing/react/overview#Nextjs) | React 18-19 | Webpack 5 | | [Vue with Vite](/app/component-testing/vue/overview#Vue-with-Vite) | Vue 3 | Vite 4-5 | | [Vue with Webpack](/app/component-testing/vue/overview#Vue-with-Webpack) | Vue 3 | Webpack 4-5 | | [Angular](/app/component-testing/angular/overview#Framework-Configuration) | Angular 17-18 | Webpack 5 | diff --git a/docs/app/component-testing/react/overview.mdx b/docs/app/component-testing/react/overview.mdx index c339d3a928..e1e801209b 100644 --- a/docs/app/component-testing/react/overview.mdx +++ b/docs/app/component-testing/react/overview.mdx @@ -15,13 +15,19 @@ sidebar_label: Overview ## Framework Support -Cypress Component Testing currently supports React 18 with the following +Cypress Component Testing currently supports React 18 and 19 with the following frameworks: - [React with Vite](#React-with-Vite) - [React with Webpack](#React-with-Webpack) - [Next.js](#Nextjs) +:::caution + +Cypress currently supports the release candidate (rc) of React 19. Though unlikely, release candidates are subject to change and could cause unprecedented issues with the React 19 release candidate and Cypress Component Testing. + +::: + ## Tutorial Visit the @@ -146,7 +152,7 @@ it via the `webpackConfig` option. ### Next.js -Cypress Component Testing works with Next.js 14+. +Cypress Component Testing works with Next.js 14 and Next.js 15. #### Next.js Configuration @@ -185,6 +191,7 @@ Next.js pages and Component Testing for individual components in a Next.js app. #### Sample Next.js Apps - [Next.js 14 with TypeScript](https://github.com/cypress-io/cypress-component-testing-apps/tree/main/react-next14-ts) +- [Next.js 15 with TypeScript](https://github.com/cypress-io/cypress-component-testing-apps/tree/main/react-next15-ts) ## Community Resources