mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-13 17:43:59 +00:00
c53c7360b7
Co-authored-by: Anthony Fu <anthonyfu117@hotmail.com>
37 lines
1.0 KiB
TypeScript
37 lines
1.0 KiB
TypeScript
import { resolve } from 'path'
|
|
import defu from 'defu'
|
|
import type { TestContext, TestOptions, TestRunner } from './types'
|
|
|
|
let currentContext: TestContext
|
|
|
|
export function createTestContext (options: Partial<TestOptions>): TestContext {
|
|
const _options: Partial<TestOptions> = defu(options, {
|
|
testDir: resolve(process.cwd(), 'test'),
|
|
fixture: 'fixture',
|
|
configFile: 'nuxt.config',
|
|
setupTimeout: 60000,
|
|
server: options.browser,
|
|
build: options.browser || options.server,
|
|
nuxtConfig: {},
|
|
// TODO: auto detect based on process.env
|
|
runner: <TestRunner>'vitest',
|
|
browserOptions: {
|
|
type: 'chromium'
|
|
}
|
|
})
|
|
|
|
return setTestContext({ options: _options as TestOptions })
|
|
}
|
|
|
|
export function useTestContext (): TestContext {
|
|
if (!currentContext) {
|
|
throw new Error('No context is available. (Forgot calling setup or createContext?)')
|
|
}
|
|
return currentContext
|
|
}
|
|
|
|
export function setTestContext (context: TestContext): TestContext {
|
|
currentContext = context
|
|
return currentContext
|
|
}
|