55 lines
No EOL
1.4 KiB
JavaScript
55 lines
No EOL
1.4 KiB
JavaScript
import { a as legacyRootDirArgs, o as logLevelArgs, t as cwdArgs } from "./_shared-BCYCnX0T.mjs";
|
|
import { n as logger } from "./logger-B4ge7MhP.mjs";
|
|
import process from "node:process";
|
|
import { defineCommand } from "citty";
|
|
import { resolve } from "pathe";
|
|
|
|
//#region ../nuxi/src/commands/test.ts
|
|
var test_default = defineCommand({
|
|
meta: {
|
|
name: "test",
|
|
description: "Run tests"
|
|
},
|
|
args: {
|
|
...cwdArgs,
|
|
...logLevelArgs,
|
|
...legacyRootDirArgs,
|
|
dev: {
|
|
type: "boolean",
|
|
description: "Run in dev mode"
|
|
},
|
|
watch: {
|
|
type: "boolean",
|
|
description: "Watch mode"
|
|
}
|
|
},
|
|
async run(ctx) {
|
|
process.env.NODE_ENV = process.env.NODE_ENV || "test";
|
|
const cwd = resolve(ctx.args.cwd || ctx.args.rootDir);
|
|
const { runTests } = await importTestUtils();
|
|
await runTests({
|
|
rootDir: cwd,
|
|
dev: ctx.args.dev,
|
|
watch: ctx.args.watch
|
|
});
|
|
}
|
|
});
|
|
async function importTestUtils() {
|
|
let err;
|
|
for (const pkg of [
|
|
"@nuxt/test-utils-nightly",
|
|
"@nuxt/test-utils-edge",
|
|
"@nuxt/test-utils"
|
|
]) try {
|
|
const exports = await import(pkg);
|
|
if (!exports.runTests) throw new Error("Invalid version of `@nuxt/test-utils` is installed!");
|
|
return exports;
|
|
} catch (_err) {
|
|
err = _err;
|
|
}
|
|
logger.error(err);
|
|
throw new Error("`@nuxt/test-utils` seems missing. Run `npm i -D @nuxt/test-utils` or `yarn add -D @nuxt/test-utils` to install.");
|
|
}
|
|
|
|
//#endregion
|
|
export { test_default as default }; |