mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 20:38:52 +00:00
47 lines
1.7 KiB
TypeScript
47 lines
1.7 KiB
TypeScript
import process from 'node:process';
|
|
|
|
import type { PlaywrightWorkerOptions } from '@playwright/test';
|
|
import { defineConfig } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
testDir: '.',
|
|
timeout: process.env.CI ? 40000 : 999999,
|
|
fullyParallel: true,
|
|
snapshotDir: 'snapshots',
|
|
snapshotPathTemplate: 'snapshots/{testFilePath}/{arg}{ext}',
|
|
webServer: {
|
|
command: process.env.CI
|
|
? 'yarn workspace @blocksuite/playground run preview'
|
|
: 'yarn workspace @blocksuite/playground run dev',
|
|
port: process.env.CI ? 4173 : 5173,
|
|
reuseExistingServer: !process.env.CI,
|
|
env: {
|
|
COVERAGE: process.env.COVERAGE ?? '',
|
|
},
|
|
},
|
|
use: {
|
|
browserName:
|
|
(process.env.BROWSER as PlaywrightWorkerOptions['browserName']) ??
|
|
'chromium',
|
|
viewport: { width: 960, height: 900 },
|
|
// 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: 'on-first-retry',
|
|
// Record video only when retrying a test for the first time.
|
|
video: 'on-first-retry',
|
|
// Timeout for each action
|
|
actionTimeout: 5_000,
|
|
permissions:
|
|
process.env.BROWSER && process.env.BROWSER !== 'chromium'
|
|
? []
|
|
: ['clipboard-read', 'clipboard-write'],
|
|
},
|
|
workers: '80%',
|
|
retries: process.env.CI ? 3 : 0,
|
|
// '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',
|
|
});
|