mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-30 09:27:13 +00:00
77 lines
1.6 KiB
TypeScript
77 lines
1.6 KiB
TypeScript
import { createTestContext, setTestContext } from '../context'
|
|
import { loadFixture, buildFixture } from '../nuxt'
|
|
import { startServer, stopServer } from '../server'
|
|
import { createBrowser } from '../browser'
|
|
import type { TestHooks, TestOptions } from '../types'
|
|
import setupJest from './jest'
|
|
import setupVitest from './vitest'
|
|
|
|
export const setupMaps = {
|
|
jest: setupJest,
|
|
vitest: setupVitest
|
|
}
|
|
|
|
export function createTest (options: Partial<TestOptions>): TestHooks {
|
|
const ctx = createTestContext(options)
|
|
|
|
const beforeEach = () => {
|
|
setTestContext(ctx)
|
|
}
|
|
|
|
const afterEach = () => {
|
|
setTestContext(undefined)
|
|
}
|
|
|
|
const afterAll = async () => {
|
|
if (ctx.serverProcess) {
|
|
setTestContext(ctx)
|
|
await stopServer()
|
|
setTestContext(undefined)
|
|
}
|
|
if (ctx.nuxt && ctx.nuxt.options.dev) {
|
|
await ctx.nuxt.close()
|
|
}
|
|
if (ctx.browser) {
|
|
await ctx.browser.close()
|
|
}
|
|
}
|
|
|
|
const setup = async () => {
|
|
if (ctx.options.fixture) {
|
|
await loadFixture()
|
|
}
|
|
|
|
if (ctx.options.build) {
|
|
await buildFixture()
|
|
}
|
|
|
|
if (ctx.options.server) {
|
|
await startServer()
|
|
}
|
|
|
|
if (ctx.options.waitFor) {
|
|
await (new Promise(resolve => setTimeout(resolve, ctx.options.waitFor)))
|
|
}
|
|
|
|
if (ctx.options.browser) {
|
|
await createBrowser()
|
|
}
|
|
}
|
|
|
|
return {
|
|
beforeEach,
|
|
afterEach,
|
|
afterAll,
|
|
setup,
|
|
ctx
|
|
}
|
|
}
|
|
|
|
export async function setup (options: Partial<TestOptions> = {}) {
|
|
const hooks = createTest(options)
|
|
|
|
const setupFn = setupMaps[hooks.ctx.options.runner]
|
|
|
|
await setupFn(hooks)
|
|
}
|