1
0
mirror of https://github.com/immich-app/immich.git synced 2024-11-24 08:52:28 +02:00
immich/e2e/vitest.config.ts

23 lines
478 B
TypeScript
Raw Normal View History

2024-02-19 19:03:51 +02:00
import { defineConfig } from 'vitest/config';
// skip `docker compose up` if `make e2e` was already run
const globalSetup: string[] = [];
try {
await fetch('http://127.0.0.1:2283/api/server-info/ping');
} catch {
globalSetup.push('src/setup.ts');
}
2024-02-19 19:03:51 +02:00
export default defineConfig({
test: {
2024-02-20 00:25:57 +02:00
include: ['src/{api,cli}/specs/*.e2e-spec.ts'],
globalSetup,
testTimeout: 15_000,
2024-02-19 19:03:51 +02:00
poolOptions: {
threads: {
singleThread: true,
},
},
},
});