Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f433e7 commit d1a6b82Copy full SHA for d1a6b82
.vscode/settings.json
@@ -220,5 +220,11 @@
220
"go.testFlags": ["-short", "-coverpkg=./..."],
221
// We often use a version of TypeScript that's ahead of the version shipped
222
// with VS Code.
223
- "typescript.tsdk": "./site/node_modules/typescript/lib"
+ "typescript.tsdk": "./site/node_modules/typescript/lib",
224
+ "jest.coverageColors": {
225
+ "uncovered": "#FF0000",
226
+ "covered": "#008000",
227
+ "partially-covered": "#FFFF00"
228
+ },
229
+ "jest.coverageFormatter": "GutterFormatter"
230
}
site/jest.config.ts
@@ -69,4 +69,5 @@ module.exports = {
69
"!<rootDir>/out/**/*.*",
70
"!<rootDir>/storybook-static/**/*.*",
71
],
72
+ coverageDirectory: "<rootDir>/test-results",
73
};
0 commit comments