1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-04 02:46:47 +01:00
immich/e2e/vitest.config.ts

14 lines
263 B
TypeScript
Raw Normal View History

2024-02-19 18:03:51 +01:00
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
2024-02-19 23:25:57 +01:00
include: ['src/{api,cli}/specs/*.e2e-spec.ts'],
globalSetup: ['src/setup.ts'],
2024-02-19 18:03:51 +01:00
poolOptions: {
threads: {
singleThread: true,
},
},
},
});