59 lines
2.2 KiB
JavaScript
59 lines
2.2 KiB
JavaScript
import { dirname, resolve } from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
const repositoryRoot = resolve(dirname(fileURLToPath(import.meta.url)), '../..');
|
|
const gatewayPort = process.env.FRONTEND_PARITY_GATEWAY_PORT ?? '15100';
|
|
const gamePort = process.env.FRONTEND_PARITY_GAME_PORT ?? '15102';
|
|
const reuseExistingServer = process.env.FRONTEND_PARITY_REUSE_SERVER === '1';
|
|
|
|
export default defineConfig({
|
|
testDir: '.',
|
|
testMatch: [
|
|
'visual-parity.spec.ts',
|
|
'public-gaps.spec.ts',
|
|
'instant-diplomacy-message.spec.ts',
|
|
'ingame-message-parity.spec.ts',
|
|
'tournament-betting.spec.ts',
|
|
'dynasty-parity.spec.ts',
|
|
'inheritance-management.spec.ts',
|
|
'map-trend.spec.ts',
|
|
],
|
|
fullyParallel: false,
|
|
workers: 1,
|
|
timeout: 30_000,
|
|
expect: {
|
|
timeout: 5_000,
|
|
},
|
|
reporter: [
|
|
['list'],
|
|
['html', { open: 'never', outputFolder: resolve(repositoryRoot, 'playwright-report/frontend-legacy') }],
|
|
],
|
|
outputDir: resolve(repositoryRoot, 'test-results/frontend-legacy'),
|
|
use: {
|
|
...devices['Desktop Chrome'],
|
|
deviceScaleFactor: 1,
|
|
colorScheme: 'dark',
|
|
locale: 'ko-KR',
|
|
timezoneId: 'UTC',
|
|
trace: 'retain-on-failure',
|
|
screenshot: 'only-on-failure',
|
|
},
|
|
webServer: [
|
|
{
|
|
command: `VITE_APP_BASE_PATH=/gateway VITE_GATEWAY_API_URL=/gateway/api/trpc VITE_GAME_API_URL_TEMPLATE=/{profile}/api/trpc VITE_GAME_ASSET_URL=/image pnpm --filter @sammo-ts/gateway-frontend dev --host 127.0.0.1 --port ${gatewayPort}`,
|
|
cwd: repositoryRoot,
|
|
url: `http://127.0.0.1:${gatewayPort}/gateway/`,
|
|
reuseExistingServer,
|
|
timeout: 120_000,
|
|
},
|
|
{
|
|
command: `VITE_APP_BASE_PATH=/che VITE_GAME_API_URL=/che/api/trpc VITE_GAME_ASSET_URL=/image VITE_GAME_PROFILE=che VITE_GATEWAY_WEB_URL=/gateway/ pnpm --filter @sammo-ts/game-frontend dev --host 127.0.0.1 --port ${gamePort}`,
|
|
cwd: repositoryRoot,
|
|
url: `http://127.0.0.1:${gamePort}/che/`,
|
|
reuseExistingServer,
|
|
timeout: 120_000,
|
|
},
|
|
],
|
|
});
|