add react 18 config to e2e scripts

This commit is contained in:
Yann Braga 2022-03-25 21:02:59 +01:00
parent 55ec6d44db
commit b908cf3b66
2 changed files with 14 additions and 1 deletions

View File

@ -221,7 +221,7 @@ jobs:
name: Run E2E tests name: Run E2E tests
# Do not test CRA here because it's done in PnP part # Do not test CRA here because it's done in PnP part
# TODO: Remove `web_components_typescript` as soon as Lit 2 stable is released # TODO: Remove `web_components_typescript` as soon as Lit 2 stable is released
command: yarn test:e2e-framework vue3 angular130 angular13 angular12 angular11 web_components_typescript web_components_lit2 react command: yarn test:e2e-framework vue3 angular130 angular13 angular12 angular11 web_components_typescript web_components_lit2 react react_18
no_output_timeout: 5m no_output_timeout: 5m
- store_artifacts: - store_artifacts:
path: /tmp/cypress-record path: /tmp/cypress-record

View File

@ -64,6 +64,19 @@ export const react: Parameters = {
additionalDeps: ['prop-types'], additionalDeps: ['prop-types'],
}; };
export const react_18: Parameters = {
framework: 'react',
name: 'react_18',
version: 'rc',
generator: fromDeps('react@rc', 'react-dom@rc'),
additionalDeps: ['prop-types'],
mainOverrides: {
reactOptions: {
newRootApi: true,
},
},
};
export const react_typescript: Parameters = { export const react_typescript: Parameters = {
framework: 'react', framework: 'react',
name: 'react_typescript', name: 'react_typescript',