Skip to content

Commit 052094b

Browse files
committedMay 19, 2024··
chore: update type
1 parent fef8b06 commit 052094b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

Diff for: ‎src/core/types.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Nuxt, NuxtConfig } from '@nuxt/schema'
2-
import type { Subprocess } from 'execa'
2+
import type { ExecaChildProcess } from 'execa'
33
import type { Browser, LaunchOptions } from 'playwright-core'
44

55
export type TestRunner = 'vitest' | 'jest' | 'cucumber'
@@ -31,7 +31,7 @@ export interface TestContext {
3131
nuxt?: Nuxt
3232
browser?: Browser
3333
url?: string
34-
serverProcess?: Subprocess
34+
serverProcess?: ExecaChildProcess
3535
mockFn?: (...args: unknown[]) => unknown
3636
/**
3737
* Functions to run on the vitest `afterAll` hook.

0 commit comments

Comments
 (0)
Please sign in to comment.