UNPKG

@nuxt/test-utils

Version:

Test utilities for Nuxt

9 lines (8 loc) 259 B
import { setupNuxt } from "./shared/nuxt.mjs"; import { beforeAll } from "vitest"; //#region src/runtime/entry.ts if (typeof window !== "undefined" && window.__NUXT_VITEST_ENVIRONMENT__) beforeAll(async () => { await setupNuxt(); }); //#endregion export {};