We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When cypress configures an app for component testing, it adds these 3 files under the support folder:
support
https://github.com/qwikifiers/qwik-ui/tree/main/packages/headless/cypress/support
and add the following configuration to the cypress..config.ts - https://github.com/qwikifiers/qwik-ui/blob/main/packages/headless/cypress.config.ts#L6
cypress..config.ts
Then we (currently manually) do the following steps:
Add the addQwikLoader() - https://github.com/qwikifiers/qwik-ui/blob/main/packages/headless/cypress/support/component.ts#L18
addQwikLoader()
Add the mount command (this line all the way to the bottom of the file) -
mount
https://github.com/qwikifiers/qwik-ui/blob/main/packages/headless/cypress/support/component.ts#L28
The text was updated successfully, but these errors were encountered:
Is it possible to generate a cypress project? When running the e2e-project generator it uses playwright and other than that I don't see anything particular to Cypress: https://github.com/qwikifiers/qwik-nx/blob/main/packages/qwik-nx/generators.json#L48
Sorry, something went wrong.
@intellix you should be able to use it with the --e2eTestRunner=cypress flag
--e2eTestRunner=cypress
No branches or pull requests
When cypress configures an app for component testing, it adds these 3 files under the
support
folder:https://github.com/qwikifiers/qwik-ui/tree/main/packages/headless/cypress/support
and add the following configuration to the
cypress..config.ts
-https://github.com/qwikifiers/qwik-ui/blob/main/packages/headless/cypress.config.ts#L6
Then we (currently manually) do the following steps:
Add the
addQwikLoader()
-https://github.com/qwikifiers/qwik-ui/blob/main/packages/headless/cypress/support/component.ts#L18
Add the
mount
command (this line all the way to the bottom of the file) -https://github.com/qwikifiers/qwik-ui/blob/main/packages/headless/cypress/support/component.ts#L28
The text was updated successfully, but these errors were encountered: