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
ConfigHandler
Component testing Dev Server ConfigHandler type should pass resolved cypress config. Currently it has no args:
type ConfigHandler<T> = T | (() => T | Promise<T>)
But it would be useful to pass the resolved Cypress config:
type ConfigHandler<T> = T | ((config: PluginConfigOptions) => T | Promise<T>)
Given that the config could be useful in configuring the dev server.
Need to use resolved config in configuring the dev server.
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What would you like?
Component testing Dev Server
ConfigHandler
type should pass resolved cypress config. Currently it has no args:But it would be useful to pass the resolved Cypress config:
Given that the config could be useful in configuring the dev server.
Why is this needed?
Need to use resolved config in configuring the dev server.
Other
No response
The text was updated successfully, but these errors were encountered: