Files
jlinc-server/frontend/vitest.config.js
2026-08-20 15:08:32 +00:00

12 lines
332 B
JavaScript

import { defineConfig } from "vitest/config";
// Unit tests for the pure resource modules (formatters, filter-state query
// building). Astro components and DOM glue are covered by the Playwright smoke.
export default defineConfig({
test: {
globals: true,
environment: "node",
include: ["src/**/*.test.js"],
},
});