Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled
Direct-navigate Calibrate, harden stub agent timing, and add Emberwake/Seer/Oath smokes so the full 32-spec E2E sweep passes reliably.
16 lines
520 B
TypeScript
16 lines
520 B
TypeScript
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
globalTeardown: './e2e/global-teardown.ts',
|
|
testDir: './e2e',
|
|
timeout: 60_000,
|
|
retries: 1,
|
|
// Live-server specs share one stub agent_id — parallel workers race on WS auth.
|
|
workers: process.env.AETHERFORGE_URL ? 1 : undefined,
|
|
use: {
|
|
baseURL: process.env.AETHERFORGE_URL || 'http://127.0.0.1:8989',
|
|
trace: 'on-first-retry',
|
|
},
|
|
projects: [{ name: 'chromium', use: { ...devices['Desktop Chrome'] } }],
|
|
});
|