refactor: server auth e2e (#7203)

This commit is contained in:
Jason Rasmussen
2024-02-19 12:03:51 -05:00
committed by GitHub
parent 59f8a886e7
commit a03b37ca86
17 changed files with 2897 additions and 374 deletions

View File

@@ -1,7 +1,7 @@
import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
testDir: './specs/',
testDir: './src/web/specs',
fullyParallel: false,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
@@ -53,8 +53,7 @@ export default defineConfig({
/* Run your local dev server before starting the tests */
webServer: {
command:
'docker compose -f ../docker/docker-compose.e2e.yml up --build -V --remove-orphans',
command: 'docker compose up --build -V --remove-orphans',
url: 'http://127.0.0.1:2283',
reuseExistingServer: true,
},