2024-02-19 17:03:51 +00:00
|
|
|
import { defineConfig } from 'vitest/config';
|
|
|
|
|
2024-02-29 20:10:08 +00:00
|
|
|
// 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 17:03:51 +00:00
|
|
|
export default defineConfig({
|
|
|
|
test: {
|
2024-02-19 22:25:57 +00:00
|
|
|
include: ['src/{api,cli}/specs/*.e2e-spec.ts'],
|
2024-02-29 20:10:08 +00:00
|
|
|
globalSetup,
|
2024-03-07 15:14:36 +00:00
|
|
|
testTimeout: 10_000,
|
2024-02-19 17:03:51 +00:00
|
|
|
poolOptions: {
|
|
|
|
threads: {
|
|
|
|
singleThread: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|