Skip to content
This repository was archived by the owner on Apr 6, 2023. It is now read-only.

fix(test-utils): support vitest v0.20.x #7712

Merged
merged 1 commit into from
Sep 21, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions packages/test-utils/src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,30 @@ export async function runTests (opts: RunTestOptions) {
process.env.NUXT_TEST_DEV = 'true'
}

// TODO: add `as typeof import('vitest/dist/node')` and remove workaround
// when we upgrade vitest: see https://github.com/nuxt/framework/issues/6297

// @ts-ignore missing types
const { startVitest } = await import('vitest/dist/node.mjs')
const succeeded = await startVitest(
const args: any[] = [
[] /* argv */,
// Vitest options
{
root: opts.rootDir,
run: !opts.watch
run: !opts.watch,
deps: {
inline: [/@nuxt\/test-utils/]
}
},
// Vite options
{
esbuild: {
tsconfigRaw: '{}'
}
}
)
]
if (startVitest.length >= 4) { args.unshift('test') }
const succeeded = await startVitest(...args)

if (!succeeded) {
process.exit(1)
Expand Down