yann-combarnous
yann-combarnous
> There is excellent extension to work with Gherkin is VS Code: [Cucumber (Gherkin) Full Support](https://marketplace.visualstudio.com/items?itemName=alexkrechik.cucumberautocomplete) > > Also, there are some additional commands (find unused step definitions, find step...
@bahmutov, any chance to get this fixed? It would help combine Cypress github action with other actions such as coveralls, which requires to run on "pull_request" action to get the...
Example setup for code coverage with Create-React-App, in cypress/plugins/index.js: ``` // Component / storybook testing import injectDevServer from '@cypress/react/plugins/react-scripts'; import findReactScriptsWebpackConfig from '@cypress/react/plugins/react-scripts/findReactScriptsWebpackConfig'; import { startDevServer } from '@cypress/webpack-dev-server'; //...
One thing I have not figured out is that I want to have nyc report on all files, which is why I used in package.json: ` "nyc": { "all": true,...
@elevatebart , now trying with Vite+React to get code coverage for component testing, but getting some issues. Using vite-plugin-istanbul 2.2.2, Vite 2.7.0-beta.10, @vitejs/plugin-react 1.1.0, and Cypress 8.7.0. vite.config.js: ``` plugins:...
> In case it helps, we've been working on getting code coverage happening over here. Hopefully we'll get some of these PRs merged in soon! > > https://github.com/cypress-io/cypress-component-testing-examples/pulls?q=is%3Apr+%22code+coverage%22 Very helpful,...
> @yann-combarnous How did you end up solving this? I'm seeing the same error due to process.env.NODE_ENV being replaced in the vite-plugin-istanbul sourcesContent output. > > ```js > function cov_26q8djqde0()...
@fi3ework , any chance to merge this, maybe with an experimental `_unstable` prefix until there is more feedback?