@@ -98,7 +98,7 @@ it("runs tests", async () => {
98
98
"test-WithADash.js/addition" : [ "started" , "passed" ] ,
99
99
"test.js/addition" : [ "started" , "passed" ] ,
100
100
"withADashTheOtherWay-test.js/addition" : [ "started" , "failed" ] ,
101
- "hello.test.js/math" : [ "started" , "passed" ] ,
101
+ "hello.test.js/math" : [ "started" , "passed" , "started" , "passed" ] ,
102
102
"hello.test.js/math/addition" : [ "started" , "passed" ] ,
103
103
"hello.test.js/math/subtraction" : [ "started" , "passed" ] ,
104
104
"otherFolder/some.test.js/addition" : [ "started" , "passed" ] ,
@@ -126,7 +126,7 @@ it("runs tests in a file", async () => {
126
126
) ;
127
127
128
128
run . expectStates ( {
129
- "hello.test.js/math" : [ "started" , "passed" ] ,
129
+ "hello.test.js/math" : [ "started" , "passed" , "started" , "passed" ] ,
130
130
"hello.test.js/math/addition" : [ "started" , "passed" ] ,
131
131
"hello.test.js/math/subtraction" : [ "started" , "passed" ] ,
132
132
"withADot.test.js/addition" : [ "started" , "passed" ] ,
@@ -145,7 +145,7 @@ it("runs subsets of tests", async () => {
145
145
const nodeVersion = getNodeVersion ( ) ;
146
146
if ( nodeVersion < 22 ) {
147
147
run . expectStates ( {
148
- "hello.test.js/math" : [ "started" , "passed" ] ,
148
+ "hello.test.js/math" : [ "started" , "passed" , "started" , "passed" ] ,
149
149
"hello.test.js/math/addition" : [ "started" , "passed" ] ,
150
150
// did not work in earlier versions due to nodejs/node#51577
151
151
"hello.test.js/math/subtraction" : [ "started" , "passed" ] ,
@@ -343,7 +343,7 @@ it("shows test output", async () => {
343
343
} ,
344
344
{
345
345
output : "another log" ,
346
- location : new vscode . Location ( uri , new vscode . Position ( 10 , 20 ) ) ,
346
+ location : new vscode . Location ( uri , new vscode . Position ( 12 , 20 ) ) ,
347
347
test : undefined ,
348
348
} ,
349
349
] ,
0 commit comments