mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-04-24 04:15:56 +00:00
17 lines
477 B
JavaScript
17 lines
477 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/**", "electron/main-legacy.js"],
|
|
},
|
|
},
|
|
});
|