We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fef8b06 commit 052094bCopy full SHA for 052094b
src/core/types.ts
@@ -1,5 +1,5 @@
1
import type { Nuxt, NuxtConfig } from '@nuxt/schema'
2
-import type { Subprocess } from 'execa'
+import type { ExecaChildProcess } from 'execa'
3
import type { Browser, LaunchOptions } from 'playwright-core'
4
5
export type TestRunner = 'vitest' | 'jest' | 'cucumber'
@@ -31,7 +31,7 @@ export interface TestContext {
31
nuxt?: Nuxt
32
browser?: Browser
33
url?: string
34
- serverProcess?: Subprocess
+ serverProcess?: ExecaChildProcess
35
mockFn?: (...args: unknown[]) => unknown
36
/**
37
* Functions to run on the vitest `afterAll` hook.
0 commit comments