-
Notifications
You must be signed in to change notification settings - Fork 59
Migrate from istanbul
to nyc
#3025
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
Labels
Comments
vrubezhny
pushed a commit
to vrubezhny/vscode-openshift-tools
that referenced
this issue
Feb 27, 2025
Currently not working example of using `nyc`: changed to nyc for coverage in `unit` tests: ``` npm run test:coverage ``` The source instrumenting is done by `npm run test:instrument` (invoked as part of `test:coverage` command) The `istanbul` dependecy is not removed yet due to not changed: - test/coverage.ts - test/ui/cluster-ui-test.ts - test/ui/public-ui-test.js depending on `istanbul` API, which is subject to change after `nyc` finally provides a valuable coverage report. Signed-off-by: Victor Rubezhny <[email protected]>
vrubezhny
pushed a commit
to vrubezhny/vscode-openshift-tools
that referenced
this issue
Feb 27, 2025
Currently not working example of using `nyc`: changed to nyc for coverage in `unit` tests: ``` npm run test:coverage ``` The source instrumenting is done by `npm run test:instrument` (invoked as part of `test:coverage` command) The `istanbul` dependecy is not removed yet due to not changed: - test/coverage.ts - test/ui/cluster-ui-test.ts - test/ui/public-ui-test.js depending on `istanbul` API, which is subject to change after `nyc` finally provides a valuable coverage report. Signed-off-by: Victor Rubezhny <[email protected]>
vrubezhny
pushed a commit
to vrubezhny/vscode-openshift-tools
that referenced
this issue
Feb 27, 2025
Currently not working example of using `nyc`: changed to nyc for coverage in `unit` tests: ``` npm run test:coverage ``` The source instrumenting is done by `npm run test:instrument` (invoked as part of `test:coverage` command) The `istanbul` dependecy is not removed yet due to not changed: - test/coverage.ts - test/ui/cluster-ui-test.ts - test/ui/public-ui-test.js depending on `istanbul` API, which is subject to change after `nyc` finally provides a valuable coverage report. Signed-off-by: Victor Rubezhny <[email protected]>
vrubezhny
pushed a commit
to vrubezhny/vscode-openshift-tools
that referenced
this issue
Feb 28, 2025
Currently not working example of using `nyc`: changed for test coverage in `unit` tests: ``` npm run test:coverage ``` The source instrumenting is done by `npm run test:instrument` (invoked as part of `test:coverage` command) The `istanbul` dependecy is not removed yet due to not changed: - test/coverage.ts - test/ui/cluster-ui-test.ts - test/ui/public-ui-test.js depending on `istanbul` API, which is subject to change after `nyc` finally provides a valuable coverage report. Fixes: redhat-developer#3025 Signed-off-by: Victor Rubezhny <[email protected]>
vrubezhny
pushed a commit
to vrubezhny/vscode-openshift-tools
that referenced
this issue
Mar 4, 2025
Currently not working example of using `nyc`: changed for test coverage in `unit` tests: ``` npm run test:coverage ``` The source instrumenting is done by `npm run test:instrument` (invoked as part of `test:coverage` command) The `istanbul` dependecy is not removed yet due to not changed: - test/coverage.ts - test/ui/cluster-ui-test.ts - test/ui/public-ui-test.js depending on `istanbul` API, which is subject to change after `nyc` finally provides a valuable coverage report. Fixes: redhat-developer#3025 Signed-off-by: Victor Rubezhny <[email protected]>
vrubezhny
pushed a commit
to vrubezhny/vscode-openshift-tools
that referenced
this issue
Mar 4, 2025
Currently not working example of using `nyc`: changed for test coverage in `unit` tests: ``` npm run test:coverage ``` The source instrumenting is done by `npm run test:instrument` (invoked as part of `test:coverage` command) The `istanbul` dependecy is not removed yet due to not changed: - test/coverage.ts - test/ui/cluster-ui-test.ts - test/ui/public-ui-test.js depending on `istanbul` API, which is subject to change after `nyc` finally provides a valuable coverage report. Fixes: redhat-developer#3025 Signed-off-by: Victor Rubezhny <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When running
npm ci
, I get the following message:It appears that
nyc
is the replacement CLI tool for collecting coverage for tests. It would be nice to migrate to it.The text was updated successfully, but these errors were encountered: