mirror of
https://github.com/immich-app/immich.git
synced 2026-01-09 13:40:55 -05:00
14 lines
261 B
TypeScript
14 lines
261 B
TypeScript
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,
|
|
},
|
|
},
|
|
},
|
|
});
|