@@ -6,7 +6,7 @@ withFixture('basic', (c) => {
6
6
name ,
7
7
{ text, lang, position, exact = false , expected, expectedRange, settings } ,
8
8
) {
9
- test . concurrent ( name , async ( { expect } ) => {
9
+ test ( name , async ( { expect } ) => {
10
10
let textDocument = await c . openDocument ( { text, lang, settings } )
11
11
let res = await c . sendRequest ( 'textDocument/hover' , {
12
12
textDocument,
@@ -180,7 +180,7 @@ withFixture('v4/basic', (c) => {
180
180
name ,
181
181
{ text, exact = false , lang, position, expected, expectedRange, settings } ,
182
182
) {
183
- test . concurrent ( name , async ( { expect } ) => {
183
+ test ( name , async ( { expect } ) => {
184
184
let textDocument = await c . openDocument ( { text, lang, settings } )
185
185
let res = await c . sendRequest ( 'textDocument/hover' , {
186
186
textDocument,
@@ -314,7 +314,7 @@ withFixture('v4/basic', (c) => {
314
314
315
315
withFixture ( 'v4/css-loading-js' , ( c ) => {
316
316
async function testHover ( name , { text, lang, position, expected, expectedRange, settings } ) {
317
- test . concurrent ( name , async ( { expect } ) => {
317
+ test ( name , async ( { expect } ) => {
318
318
let textDocument = await c . openDocument ( { text, lang, settings } )
319
319
let res = await c . sendRequest ( 'textDocument/hover' , {
320
320
textDocument,
@@ -398,7 +398,7 @@ withFixture('v4/css-loading-js', (c) => {
398
398
399
399
withFixture ( 'v4/path-mappings' , ( c ) => {
400
400
async function testHover ( name , { text, lang, position, expected, expectedRange, settings } ) {
401
- test . concurrent ( name , async ( { expect } ) => {
401
+ test ( name , async ( { expect } ) => {
402
402
let textDocument = await c . openDocument ( { text, lang, settings } )
403
403
let res = await c . sendRequest ( 'textDocument/hover' , {
404
404
textDocument,
0 commit comments