Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -467,6 +467,7 @@ workflows:
store_artifacts: true
post-steps:
- run: cat examples/one-spec/.nyc_output/out.json
- run: cat examples/one-spec/coverage/coverage-summary.json
# store the created coverage report folder
# you can click on it in the CircleCI UI
# to see live static HTML site
Expand Down
2 changes: 1 addition & 1 deletion common-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function combineNycOptions({

const defaultNycOptions = {
'report-dir': './coverage',
reporter: ['lcov', 'clover', 'json'],
reporter: ['lcov', 'clover', 'json', 'json-summary'],
extension: ['.js', '.cjs', '.mjs', '.ts', '.tsx', '.jsx'],
excludeAfterRemap: false
}
Expand Down
2 changes: 1 addition & 1 deletion cypress/integration/combine-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('Combine NYC options', () => {
extends: '@istanbuljs/nyc-config-typescript',
all: true,
'report-dir': './coverage',
reporter: ['lcov', 'clover', 'json'],
reporter: ['lcov', 'clover', 'json', 'json-summary'],
extension: ['.js', '.cjs', '.mjs', '.ts', '.tsx', '.jsx'],
excludeAfterRemap: false
})
Expand Down