Skip to content

Commit

Permalink
chore: update type
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed May 19, 2024
1 parent fef8b06 commit 052094b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Nuxt, NuxtConfig } from '@nuxt/schema'
import type { Subprocess } from 'execa'
import type { ExecaChildProcess } from 'execa'
import type { Browser, LaunchOptions } from 'playwright-core'

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

0 comments on commit 052094b

Please sign in to comment.