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
I am trying to use mocha-junit-reporter in combination with nyc and ts-mocha.
mocha-junit-reporter
nyc
ts-mocha
In package.json I have this excerpt:
"scripts": { "test-ts": "ts-mocha \"./test/**/*.test.ts\"", "nyc": "nyc --check-coverage --all --lines 50 --functions 50 --branches 50 --reporter=html --reporter=text --reporter=mocha-junit-reporter npm run test-ts" },
After nyc finishes executing and all tests pass, I just see this, and no report is generated:
Perhaps mocha-junit-reporter is incompatible with ts-mocha? What is the suggested approach?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to use
mocha-junit-reporter
in combination withnyc
andts-mocha
.In package.json I have this excerpt:
After nyc finishes executing and all tests pass, I just see this, and no report is generated:
Perhaps
mocha-junit-reporter
is incompatible withts-mocha
? What is the suggested approach?The text was updated successfully, but these errors were encountered: