mirror of
https://github.com/Quad4-Software/MeshChatX.git
synced 2026-08-18 09:49:09 -04:00
16 lines
450 B
JavaScript
16 lines
450 B
JavaScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: "node",
|
|
include: ["tests/electron/**/*.test.js"],
|
|
coverage: {
|
|
provider: "v8",
|
|
reporter: ["text", "json-summary"],
|
|
reportsDirectory: "./coverage-electron",
|
|
include: ["electron/**/*.js"],
|
|
exclude: ["electron/assets/**"],
|
|
},
|
|
},
|
|
});
|