Files
openmaic/OpenMAIC/render-service/vitest.config.ts
2026-08-16 14:58:47 +08:00

11 lines
301 B
TypeScript

import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
include: ['test/**/*.test.ts'],
// Node environment: these test the service's server-side boundaries
// (unzip limits, admission arithmetic, body caps), no DOM needed.
environment: 'node',
},
});