1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-29 15:11:58 +00:00
immich/e2e/vitest.config.ts

14 lines
261 B
TypeScript
Raw Normal View History

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