docs/react-router/testing.md
Ionic Framework supports React Router v6 across multiple versions of React. As a result, we need to verify that Ionic routing works correctly with each of these React versions.
Run npm run typecheck in packages/react-router to check types. The rollup build only reports type errors as warnings, so a passing build does not mean the types are clean.
The React test app supports syncing your locally built changes for validation.
@ionic/core, @ionic/react, and @ionic/react-router projects using npm run build.npm install.npm run sync.From here you can either build the application or start a local dev server. When re-syncing changes, you will need to wipe the build cache in node_modules/.cache and restart the dev server/re-build.
packages/react-router/scripts/test_runner.sh orchestrates the React Router test suites end to end: it builds @ionic/core, @ionic/react, and @ionic/react-router, builds the test app, syncs local packages, starts the dev server, and runs Cypress and Playwright in sequence. By default it uses the reactrouter6-react18 app; pass --app reactrouter6-react19 to test against the latest supported React version.
# Full run (build + Cypress + Playwright)
sh packages/react-router/scripts/test_runner.sh
# Reuse the existing build/<app> directory and run only Playwright
sh packages/react-router/scripts/test_runner.sh --skip-build --playwright-only
# Filter Playwright to a single spec
sh packages/react-router/scripts/test_runner.sh --playwright-only --spec swipe
# Build/sync and serve the app for manual testing (no specs run)
sh packages/react-router/scripts/test_runner.sh --serve
Useful flags:
| Flag | Effect |
|---|---|
--skip-build | Reuse existing packages/react-router/test/build/<app>/ instead of rebuilding |
--playwright-only | Run only the Playwright e2e suite |
--spec <pattern> | Filter Playwright specs by file path |
--app <name> | Pick a different app variant from packages/react-router/test/apps/ (default: reactrouter6-react18; use reactrouter6-react19 for the latest supported React version) |
--serve | Start the dev server only and open the browser |
The test app starts with setupIonicReact({ logLevel: LogLevel.DEBUG }), so the StackManager swipe-back diagnostics are on for every spec.
cypress-terminal-report.npx playwright show-trace <path> and read the console tab. Retries are off locally, so pass --trace on when you want the same thing from a local run. Don't turn tracing on by default: the recording overhead is enough to destabilize the tab lifecycle specs on React 19.A passing run collects the same logs in the browser and throws them away, so nothing reaches your terminal. Refer to Debug Logging for turning them on in your own app.
Unlike other test applications, these test apps are broken up into multiple directories. These directories are then combined to create a single application. This allows us to share common application code, tests, etc so that each app is being tested the same way. Below details the different pieces that help create a single test application.
apps - This directory contains partial applications for each version of React we want to test. Typically these directories contain new package.json files, cypress.config.ts files, and more. If you have code that is specific to a particular version of React, put it in this directory.
base - This directory contains the base application that each test app will use. This is where tests, application logic, and more live. If you have code that needs to be run on every test app, put it in this directory.
build - When the apps and base directories are merged, the final result is put in this directory. The build directory should never be committed to git.
build.sh - This is the script that merges the apps and base directories and places the built application in the build directory.
Usage:
# Build a test app using apps/reactrouter6-react18 as a reference
./build.sh reactrouter6-react18
To add new tests, components, or pages, modify the base project. This ensures that tests are run for every tested version.
If you want to add a version-specific change, add the change inside of the appropriate projects in apps. Be sure to replicate the directory structure. For example, if you are adding a new E2E test file called test.e2e.ts in apps/reactrouter6-react18, make sure you place the file in apps/reactrouter6-react18/tests/e2e/test.e2e.ts.
If you need to add E2E tests that are only run on a specific version of the JS Framework, replicate the VersionTest component on each partial application. This ensures that tests for framework version X do not get run for framework version Y.
As we add support for new versions of React, we will also need to update this directory to test against new applications. The following steps can serve as a guide for adding new apps:
package.json, package-lock.json, etc).apps.test-react-router-e2e in ./github/workflows/build.yml. This will allow the new test app to run against all PRs.