Files
AFFiNE-Mirror/tests/affine-mobile/playwright.config.ts
EYHN 4217bfe02d chore(infra): add url test to playwright (#11795)
<!-- This is an auto-generated comment: release notes by coderabbit.ai -->
## Summary by CodeRabbit

- **Chores**
  - Updated Playwright test configurations to use full URL strings instead of port numbers for web server identification.
  - Unified server startup approach in test environments by integrating web server configuration directly into Playwright, replacing custom setup scripts.
  - Removed obsolete development server setup files to streamline test initialization.
<!-- end of auto-generated comment: release notes by coderabbit.ai -->
2025-05-21 04:07:46 +00:00

69 lines
1.9 KiB
TypeScript

import { testResultDir } from '@affine-test/kit/playwright';
import { devices, type PlaywrightTestConfig } from '@playwright/test';
/**
* See https://playwright.dev/docs/test-configuration.
*/
const config: PlaywrightTestConfig = {
testDir: './e2e',
fullyParallel: true,
timeout: process.env.CI ? 60_000 : 30_000,
outputDir: testResultDir,
projects: [
process.env.CI
? {
name: 'Mobile Safari',
use: {
...devices['iPhone 14'],
},
}
: undefined,
{
name: 'Mobile Chrome',
use: {
...devices['Pixel 5'],
},
},
].filter(config => config !== undefined),
expect: {
timeout: process.env.CI ? 15_000 : 5_000,
},
use: {
baseURL: 'http://localhost:8080/',
locale: 'en-US',
// Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer
// You can open traces locally(`npx playwright show-trace trace.zip`)
// or in your browser on [Playwright Trace Viewer](https://trace.playwright.dev/).
trace: 'retain-on-failure',
// Record video only when retrying a test for the first time.
video: 'retain-on-failure',
},
forbidOnly: !!process.env.CI,
workers: 4,
retries: 1,
// 'github' for GitHub Actions CI to generate annotations, plus a concise 'dot'
// default 'list' when running locally
// See https://playwright.dev/docs/test-reporters#github-actions-annotations
reporter: process.env.CI ? 'github' : 'list',
webServer: [
// Intentionally not building the web, reminds you to run it by yourself.
{
command: 'yarn run -T affine dev -p @affine/mobile',
timeout: 120 * 1000,
reuseExistingServer: !process.env.CI,
env: {
COVERAGE: process.env.COVERAGE || 'false',
},
url: 'http://localhost:8080',
},
],
};
if (process.env.CI) {
config.retries = 3;
config.workers = '50%';
}
export default config;