`.nyc_output/out.json` is an empty object when using with `@cypress/react`
See original GitHub issueLogs and screenshots
Please provide debug logs by running Cypress from the terminal with DEBUG=code-coverage
environment variable set, see the Debugging section of the README file.
Debug logs
code-coverage reset code coverage in interactive mode +0ms
code-coverage parsed sent coverage +32ms
code-coverage wrote coverage file /Users/chrisrzhou/Github/cypress-coverage-repo/.nyc_output/out.json +1ms
code-coverage parsed sent coverage +25ms
code-coverage wrote coverage file /Users/chrisrzhou/Github/cypress-coverage-repo/.nyc_output/out.json +0ms
⚠️ file /Users/chrisrzhou/Github/cypress-coverage-repo/.nyc_output/out.json has no coverage information
Did you forget to instrument your web application? Read https://github.com/cypress-io/code-coverage#instrument-your-application
code-coverage ⚠️ file /Users/chrisrzhou/Github/cypress-coverage-repo/.nyc_output/out.json has no coverage information +8s
code-coverage ⚠️ file /Users/chrisrzhou/Github/cypress-coverage-repo/.nyc_output/out.json has no coverage information +1ms
code-coverage calling NYC reporter with options { 'report-dir': '/Users/chrisrzhou/Github/cypress-coverage-repo/coverage', reporter: [ 'lcov', 'clover', 'json', 'json-summary' ], extension: [ '.js', '.cjs', '.mjs', '.ts', '.tsx', '.jsx' ], excludeAfterRemap: false, 'temp-dir': '/Users/chrisrzhou/Github/cypress-coverage-repo/.nyc_output', tempDir: '/Users/chrisrzhou/Github/cypress-coverage-repo/.nyc_output', reportDir: '/Users/chrisrzhou/Github/cypress-coverage-repo/coverage' } +7ms
code-coverage current working directory is /Users/chrisrzhou/Github/cypress-coverage-repo +0ms
code-coverage after reporting, returning the report folder name /Users/chrisrzhou/Github/cypress-coverage-repo/coverage +40ms
code-coverage Final coverage in /Users/chrisrzhou/Github/cypress-coverage-repo/coverage/coverage-final.json +0ms
code-coverage There are 0 key(s) in /Users/chrisrzhou/Github/cypress-coverage-repo/coverage/coverage-final.json +0ms
Versions
- What is this plugin’s version? @cypress/code-coverage@3.9.7 (latest)
- What is Cypress version? cypress@7.6.0, @cypress/react@5.9.1, @cypress/webpack-dev-server@1.4.0 (see
package.json
in repo for more details). - What is your operating system? Mac
- What is the shell? zsh
- What is the Node version? v12.22.1
- What is the NPM version? 6.14.12
- How do you instrument your application? Through the official docs’ recommendation. See repo below for details.
- When running tests, if you open the web application in regular browser, and open DevTools, do you see
window.__coverage__
object? Following the official docs, I can seewindow.__coverage__
object for the files that the test is touching. - Is there
.nyc_output
folder? Is there.nyc_output/out.json
file. Is it empty? Both folder and file exists, the contents is just the empty object{}
. - Do you have any custom NYC settings in
package.json
(nyc
object) or in other NYC config files No - Do you run Cypress tests in a Docker container? No, just locally
Describe the bug
Bug Report
Repro Link
https://github.com/chrisrzhou/cypress-code-coverage-issue-472
Context
It is a minimal example with the following requirements:
- Is an ESM module
- i.e.
"type": "module"
is explicitly marked in thepackage.json
- appropriate Cypress files need to be marked as
.cjs
in order for the tests to run. Incypress/plugins/index.cjs
and fields incypress.json
.
- i.e.
- Uses component testing (i.e.
@cypress/react
and usingopen-ct
andrun-ct
test runners). - Uses code coverage (i.e.
@cypress/code-coverage
andbabel-plugin-istanbul
based on the official docs for instrumentation).
The requirements above are needed in the actual bug faced in the project, so the repo is capturing the minimal configuration of reproducing the same bug.
Reproduce
npm i
npm test
The test runner runs fine, and tests the code correctly.
Expected Behavior
Code coverage to output something meaningful in .nyc_output/out.json
Actual Behavior
.nyc_output/out.json
is an empty object. The test runner complains that the code is not instrumented.
Issue Analytics
- State:
- Created 2 years ago
- Comments:7
Top Results From Across the Web
Can someone Explain why JSON returns empty unless I use ...
Hey guys so I've created an object as a script include and sent it to my client script as a JSON object to...
Read more >How ignore empty json objects like "car":{} - Stack Overflow
Using BeanDeserializerModifier with custom deserialiser is a good idea. You need to improve only a deserialiser implementation.
Read more >How to Check if an Object is Empty in JavaScript – JS Java ...
You can now use this method to check if an object is empty with an if statement or create a function that checks....
Read more >How to Check if Object is Empty in JavaScript - Samantha Ming
Here's a Code Recipe to check if an object is empty or not. For newer browsers, you can use plain vanilla JS and...
Read more >How to Check if JavaScript Object is Empty - W3docs
This would return true if it could find no keys in the loop, which means that the object is empty. If any key...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Is there any update on this issue ? I am facing the same issue. While running the application using dev server on regular browser, I see
window.__coverage__
object but while running the cypress test cases, I get the errors:cypress\.nyc_output\out.json has no coverage information
and"Could not find any coverage information in your application by looking at the window coverage object. Did you forget to instrument your application? See [code-coverage#instrument-your-application](https://github.com/cypress-io/code-coverage#instrument-your-application) [@cypress/code-coverage]"
Hello @chrisrzhou, hello all,
here is my solution, which from my point of view is a gap in the documentation.
In my case when using the new component tests, which was mentioned in the context of the question (
open-ct
orrun-ct
)window.__coverage__
was not evaluated from@cypress/code-coverage
.The reason was that, according to the documentation,
import '@cypress/code-coverage/support';
only included insupport/index.js
. Cypress, however, uses in my environement instead/support/unit.js
for component tests. Bothsupport/index.js
andsupport/unit.js
files imports thesupport/commands.js
.I put the line there, then it works as well, because cypress can register the tasks in component tests.