1
0
mirror of https://github.com/immich-app/immich.git synced 2025-08-09 23:17:29 +02:00

chore(e2e): change e2e ports to some not used by immich-dev (#12132)

use port not taken by immich-dev for e2e
This commit is contained in:
Jonathan Jogenfors
2024-08-30 14:04:02 +02:00
committed by GitHub
parent fa9b2219f8
commit aa04ded311
9 changed files with 18 additions and 18 deletions

View File

@@ -3,7 +3,7 @@ import { defineConfig } from 'vitest/config';
// skip `docker compose up` if `make e2e` was already run
const globalSetup: string[] = ['src/setup/auth-server.ts'];
try {
await fetch('http://127.0.0.1:2283/api/server-info/ping');
await fetch('http://127.0.0.1:2285/api/server-info/ping');
} catch {
globalSetup.push('src/setup/docker-compose.ts');
}