Skip to content

Commit a4716a3

Browse files
committed
Disable some concurrent tests
1 parent 1dc6bb3 commit a4716a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/tailwindcss-language-server/tests/hover/hover.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ withFixture('v4/basic', (c) => {
314314

315315
withFixture('v4/css-loading-js', (c) => {
316316
async function testHover(name, { text, lang, position, expected, expectedRange, settings }) {
317-
test.concurrent(name, async ({ expect }) => {
317+
test(name, async ({ expect }) => {
318318
let textDocument = await c.openDocument({ text, lang, settings })
319319
let res = await c.sendRequest('textDocument/hover', {
320320
textDocument,
@@ -398,7 +398,7 @@ withFixture('v4/css-loading-js', (c) => {
398398

399399
withFixture('v4/path-mappings', (c) => {
400400
async function testHover(name, { text, lang, position, expected, expectedRange, settings }) {
401-
test.concurrent(name, async ({ expect }) => {
401+
test(name, async ({ expect }) => {
402402
let textDocument = await c.openDocument({ text, lang, settings })
403403
let res = await c.sendRequest('textDocument/hover', {
404404
textDocument,

0 commit comments

Comments
 (0)