15 lines
292 B
JavaScript
15 lines
292 B
JavaScript
// vitest.config.js
|
|
import { defineConfig } from "vitest/config";
|
|
import vue from "@vitejs/plugin-vue";
|
|
|
|
export default defineConfig({
|
|
plugins: [vue()],
|
|
test: {
|
|
globals: true,
|
|
environment: "jsdom",
|
|
coverage: {
|
|
provider: "v8",
|
|
},
|
|
},
|
|
});
|