mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
23 lines
491 B
TypeScript
23 lines
491 B
TypeScript
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');
|
|
}
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
include: ['src/{api,cli,immich-admin}/specs/*.e2e-spec.ts'],
|
|
globalSetup,
|
|
testTimeout: 15_000,
|
|
poolOptions: {
|
|
threads: {
|
|
singleThread: true,
|
|
},
|
|
},
|
|
},
|
|
});
|