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)
Is there a way to use .babelrc for development/testing environments, and SWC for production environment?
I am using a Cypress code coverage plugin that depends on istanbul which is not supported by SWC, so in order for it to work, I have it configured in a .babelrc file at the root of my Next.js project...

Eden Chan
Votes: 0
Answers: 0
Unit testcases for data present in side the <h1> tag
I wan to do testing for the element which are present in my react code using Unit testing through mocha in Istanbul tool.
writing a unit testcases for h1 tag which consist of some heading, how we caa...
Analytics
Votes: 0
Answers: 0
How to get time taken coverage report for each test cases in jest
With this below script, we can collect time taken report per suite but not every test case.
jest --runInBand __tests__/*tests.ts --json --verbose --outputFile=testout.json
So is there a way we can che...

Mithun Shreevatsa
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