mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 09:03:53 +00:00
467ab693b9
Co-authored-by: pooya parsa <pyapar@gmail.com>
66 lines
1.5 KiB
TypeScript
66 lines
1.5 KiB
TypeScript
import { existsSync, promises as fsp } from 'fs'
|
|
import { resolve } from 'path'
|
|
import * as _kit from '@nuxt/kit'
|
|
import { useTestContext } from './context'
|
|
|
|
// @ts-ignore type cast
|
|
const kit: typeof _kit = _kit.default || _kit
|
|
|
|
const isNuxtApp = (dir: string) => {
|
|
return existsSync(dir) && (
|
|
existsSync(resolve(dir, 'pages')) ||
|
|
existsSync(resolve(dir, 'nuxt.config.js')) ||
|
|
existsSync(resolve(dir, 'nuxt.config.ts'))
|
|
)
|
|
}
|
|
|
|
const resolveRootDir = () => {
|
|
const { options } = useTestContext()
|
|
|
|
const dirs = [
|
|
options.rootDir,
|
|
resolve(options.testDir, options.fixture),
|
|
process.cwd()
|
|
]
|
|
|
|
for (const dir of dirs) {
|
|
if (dir && isNuxtApp(dir)) {
|
|
return dir
|
|
}
|
|
}
|
|
|
|
throw new Error('Invalid nuxt app. (Please explicitly set `options.rootDir` pointing to a valid nuxt app)')
|
|
}
|
|
|
|
export async function loadFixture () {
|
|
const ctx = useTestContext()
|
|
|
|
ctx.options.rootDir = resolveRootDir()
|
|
|
|
const randomId = Math.random().toString(36).substr(2, 8)
|
|
const buildDir = resolve(ctx.options.rootDir, '.nuxt', randomId)
|
|
Object.assign(ctx.options.nuxtConfig, {
|
|
buildDir,
|
|
nitro: {
|
|
output: {
|
|
dir: resolve(buildDir, 'output')
|
|
}
|
|
}
|
|
})
|
|
|
|
ctx.nuxt = await kit.loadNuxt({
|
|
rootDir: ctx.options.rootDir,
|
|
config: ctx.options.nuxtConfig,
|
|
configFile: ctx.options.configFile
|
|
})
|
|
|
|
kit.logger.level = ctx.options.logLevel
|
|
|
|
await fsp.mkdir(ctx.nuxt.options.buildDir, { recursive: true })
|
|
}
|
|
|
|
export async function buildFixture () {
|
|
const ctx = useTestContext()
|
|
await kit.buildNuxt(ctx.nuxt)
|
|
}
|