Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
change the default to null
  • Loading branch information
stephtr committed May 21, 2018
commit 215197594116ace04ac9039a57a40fb17e780eb6
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
"jest.coverageCollect": {
"description": "Wheter jest should collect test coverage information",
"type": "boolean",
"default": false
"default": null
},
"jest.showCoverageOnLoad": {
"description": "Show code coverage when extension starts (if collected)",
Expand Down
2 changes: 1 addition & 1 deletion tests/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ describe('Extension', () => {

expect(getExtensionSettings()).toEqual({
autoEnable: true,
coverageCollect: false,
coverageCollect: null,
coverageFormatter: 'DefaultFormatter',
debugCodeLens: {
enabled: true,
Expand Down