python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to generate a coverage report with vscode extension tests
I'm implementing a VSCode extension. I set up the project following this link.
It generates a starter project with a src/test/runTest.ts file:
import * as path from 'path';
import { runTests } from '...

Valentin Vignal
Votes: 0
Answers: 1
The same source line is green for a test suite, but white for the other test suite in Jacoco report?
I have two test suite T1 and T2. As shown in the pictures, for T1, the line 55 private abstract class SafeNotifier { is not marked as red, green or yellow. But for T2, it is green.
So I have two quest...

Instein
Votes: 0
Answers: 0
How to configure watermarks in coverage reports when using jest?
My coverage report runs fine, but I would like to configure the watermarks that is used to mark coverage green, yellow and red.
My coverage report currently look like this:
It seems RED is used when ...

Mikael
Votes: 0
Answers: 1
Istanbuljs with TS reports 0% coverage for certain files only. Why?
So I have this config:
.nycrc
"extends": "@istanbuljs/nyc-config-typescript",
"extension": [
".ts"
],
"exclude": [
"**/...
user2297996
Votes: 0
Answers: 0