Open
Description
Environment
-
node -v
: v8.9.4 -
npm -v
: 5.6.0 -
npm ls react-scripts
(if you haven’t ejected): `-- (empty) -
Operating system: Windows 10
Steps to Reproduce
Create a describe
block with multiple test. e.g.:
describe('x', function() {
test('1', function() {
});
test('2', function() {
});
});
Expected Behavior
A CodeLens to "Debug" appears for the describe
block and one for each test
.
Actual Behavior
A CodeLens to "Debug" appears only for each test
and not for the describe
block.