Skip to content

Commit c8eaa7b

Browse files
committed
Tweak test options
1 parent b787df7 commit c8eaa7b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/tailwindcss-language-server/src/project-locator.test.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { expect, test } from 'vitest'
1+
import { expect, test, TestOptions } from 'vitest'
22
import * as path from 'node:path'
33
import { ProjectLocator } from './project-locator'
44
import { URL, fileURLToPath } from 'url'
@@ -328,16 +328,19 @@ function testLocator({
328328
fs,
329329
expected,
330330
settings,
331+
options,
331332
}: {
332333
name: string
333334
fs: Storage
334335
settings?: Partial<Settings>
335336
expected: any[]
337+
options?: TestOptions
336338
}) {
337339
defineTest({
338340
name,
339341
fs,
340342
prepare,
343+
options,
341344
async handle({ search }) {
342345
let projects = await search(settings)
343346

0 commit comments

Comments
 (0)