mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-04 06:58:02 +00:00
9 lines
160 B
TypeScript
9 lines
160 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
globalSetup: './vitest.global-setup.ts',
|
|
},
|
|
});
|