test: verify fresh image lifecycle

This commit is contained in:
2026-08-08 03:36:53 +00:00
parent ebf076a3c8
commit 8e65dc992d
7 changed files with 430 additions and 39 deletions
@@ -0,0 +1,17 @@
import { dirname, resolve } from 'node:path';
import { fileURLToPath } from 'node:url';
import { defineConfig } from '@playwright/test';
const repositoryRoot = resolve(dirname(fileURLToPath(import.meta.url)), '../../..');
export default defineConfig({
testDir: '.',
testMatch: 'live-game-lifecycle.spec.ts',
fullyParallel: false,
workers: 1,
timeout: 300_000,
globalTimeout: 360_000,
reporter: [['list']],
outputDir: resolve(repositoryRoot, 'test-results/live-game-lifecycle'),
});