Skip to content
New issue

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

Code coverage not getting generated in headless mode. in 3.10.0 #611

Closed
omkar-nath opened this issue Dec 8, 2022 · 9 comments
Closed

Code coverage not getting generated in headless mode. in 3.10.0 #611

omkar-nath opened this issue Dec 8, 2022 · 9 comments

Comments

@omkar-nath
Copy link

Hi, We are using cypress/code-coverage - 3.10.0 and Cypress 10.3.1. In interactive mode we are able to see code coverage but when run in headless mode.

Cannot find coverage file /Users/omkar/<folder>/uitest/.nyc_output/out.json
Skipping coverage report

I have tried with --headed option also but the result is same.

@gonzalo-novak
Copy link

Hello Omkar,

I had this issue, and I saw we can get the coverage report by setting up the following environment variable.

cypress run --browser chrome -e codeCoverageTasksRegistered=true --spec 'cypress/e2e/all.cy.ts'

The codeCoverageTasksRegistered variable is set in the interactive mode but not in headless mode. So, we need to configure it manually.

@ojemuyiwa
Copy link

Hello Omkar,

I had this issue, and I saw we can get the coverage report by setting up the following environment variable.

cypress run --browser chrome -e codeCoverageTasksRegistered=true --spec 'cypress/e2e/all.cy.ts'

The codeCoverageTasksRegistered variable is set in the interactive mode but not in headless mode. So, we need to configure it manually.

sadly I get sh: -e: command not found and setting it in cypress env: { codeCoverageTasksRegistered: true } doesn't work either

@gonzalo-novak
Copy link

Hello Omkar,
I had this issue, and I saw we can get the coverage report by setting up the following environment variable.

cypress run --browser chrome -e codeCoverageTasksRegistered=true --spec 'cypress/e2e/all.cy.ts'

The codeCoverageTasksRegistered variable is set in the interactive mode but not in headless mode. So, we need to configure it manually.

sadly I get sh: -e: command not found and setting it in cypress env: { codeCoverageTasksRegistered: true } doesn't work either

If you run this command on your terminal, you may need to point to the cypress binary in the node_modules directory. Otherwise, your terminal might not find the cypress binary in the $PATH variable of your computer. Try to use that command by creating a script in the package.json. For instance:

"scripts": {
  "e2e:coverage": "cypress run --browser chrome -e codeCoverageTasksRegistered=true --spec 'cypress/e2e/<the_test_ file_you_want_to_run>'"
}

@ojemuyiwa
Copy link

ojemuyiwa commented Jun 5, 2023

For anyone experiencing similar the steps used to get this working headless in the pipeline for me included:
package.json using "nyc": "^15.1.0"

"nyc": {
        "extends": "@istanbuljs/nyc-config-typescript",
        "all": true,
        "report-dir": "e2e/coverage",
        "temp-dir": "e2e/.nyc_output",
        "exclude": [
            "server",
            "e2e",
            "dist",
            "tmp",
            "mock-data",
            "coverage",
            "node_modules",
            "src/**/*.spec.ts",
            "src/**/*.spec.tsx"
        ],
        "instrument": false,
        "include": [
            "src/**/*.ts",
            "src/**/*.tsx"
        ]
    }

*"@babel/preset-react": "^7.14.5"*
.babelrc *NOTE* default configuration included and just added *Istanbul*
"env": {
        "e2e": {
            "presets": [
                [
                    "@nrwl/react/babel",
                    {
                        "runtime": "automatic"
                    }
                ]
            ],
            "plugins": [
                [
                    "import",
                    { "libraryName": "antd", "libraryDirectory": "lib" },
                    "antd"
                ],
                "istanbul"
            ]
        }
    }

Using the documentation: https://docs.cypress.io/guides/tooling/code-coverage#Using-code-transpilation-pipeline
For Nx Cli environment ("nx": "15.9.2") for some reason the transform-class-properties does not work and asks for babel-transform-class-properties to be installed which broke the build so I left it out altogether.

prefixing the pipeline build command with NODE_ENV=e2e or BABEL_ENV=e2e will set the env variable and transpile the code using the configuration above for cypress tests only.

@nagash77
Copy link
Contributor

nagash77 commented Jun 5, 2023

Hi @omkar-nath , I realize this issue is quite old, but did @ojemuyiwa 's suggestion address your problem?

@nagash77 nagash77 self-assigned this Jun 5, 2023
@nagash77
Copy link
Contributor

Unfortunately we have to close this issue due to inactivity. Please comment if there is new information to provide concerning the original issue and we can reopen.

@nagash77 nagash77 closed this as not planned Won't fix, can't repro, duplicate, stale Jun 12, 2023
@nagash77 nagash77 removed their assignment Jun 12, 2023
@SparksFlyx3
Copy link

SparksFlyx3 commented Jul 10, 2023

My team also experiences issues with generating Cypress code coverage reports in our Jenkins pipeline (we are using Vite, instead of Babel/Webpack). It works totally fine locally with various formats (text, json, cobertura, html) in headless mode and with the UI (We are using nyc in version 15.1.0.).

Did anybody find the cause and/or a solution for this?

.nycrc

{
    "excludeAfterRemap": true,
    "compact": true,
    "instrument": false,
    "report-dir": "../reports/cypress-coverage",
    "reporter": [
        "text",
        "json"
    ],
    "extension": [
        "js",
        "jsx",
        ".ts",
        ".tsx"
    ],
    "include": [
        "src/**/*.js",
        "src/**/*.jsx",
        "src/**/*.ts",
        "src/**/*.tsx"
    ],
    "exclude": [ ...  ]
}

Calling with the following script by yarn int:coverage in our package.json:

"scripts": {
    ...
    "int:coverage": "cypress run --e2e --spec 'cypress/integration/**/*.int.cy.ts' --env coverage=true",
}

@nagash77
Copy link
Contributor

Hi @SparksFlyx3 have you tried the suggestion in this comment? If that does not address your problem I would suggest either opening a new issue with a reproducible example or checking out the Cypress Discord Community Discord chat, it can be helpful for debugging or answering questions on how to use Cypress.

@DavidLGoldberg
Copy link

Same issue, CLI/headless not working the way the runner did with "@cypress/code-coverage"

Tried a bunch of this to no avail.

I went with:
"cypress:run": "rm -rf ./coverage && rm -rf ./.nyc_output && cypress run <stuff> # could use rimraf for portability of course.

Easy enough. Wish I thought of it sooner. Sort of seems safer and more foolproof anyway. Removes a vector for misleading reports.

If anyone has a reason why this is a bad idea, I'd be curious!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants