We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b787df7 commit c8eaa7bCopy full SHA for c8eaa7b
packages/tailwindcss-language-server/src/project-locator.test.ts
@@ -1,4 +1,4 @@
1
-import { expect, test } from 'vitest'
+import { expect, test, TestOptions } from 'vitest'
2
import * as path from 'node:path'
3
import { ProjectLocator } from './project-locator'
4
import { URL, fileURLToPath } from 'url'
@@ -328,16 +328,19 @@ function testLocator({
328
fs,
329
expected,
330
settings,
331
+ options,
332
}: {
333
name: string
334
fs: Storage
335
settings?: Partial<Settings>
336
expected: any[]
337
+ options?: TestOptions
338
}) {
339
defineTest({
340
name,
341
342
prepare,
343
344
async handle({ search }) {
345
let projects = await search(settings)
346
0 commit comments