quicknotes/frontend/playwright.config.ts
Nicola Zangrandi c1873066eb
test(frontend): add e2e tests for notes functionality
- Add tests for note creation, editing, and linking
- Configure Playwright for cross-browser testing
- Ensure reliable test execution with proper waits
- Use single worker due to shared database state
2025-02-21 13:26:18 +01:00

55 lines
1 KiB
TypeScript

/// <reference types="node" />
import type { PlaywrightTestConfig } from '@playwright/test';
import { devices } from '@playwright/test';
const config: PlaywrightTestConfig = {
testDir: './tests',
fullyParallel: false,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: 1,
reporter: 'html',
timeout: 10000,
expect: {
timeout: 10000
},
use: {
baseURL: 'http://localhost:3000',
trace: 'on-first-retry',
screenshot: 'only-on-failure',
actionTimeout: 10000
},
projects: [
{
name: 'chromium',
use: { ...devices['Desktop Chrome'] }
},
{
name: 'firefox',
use: { ...devices['Desktop Firefox'] }
},
{
name: 'webkit',
use: { ...devices['Desktop Safari'] }
},
{
name: 'mobile-chrome',
use: { ...devices['Pixel 5'] }
},
{
name: 'mobile-safari',
use: { ...devices['iPhone 12'] }
}
],
webServer: [
{
command: 'cd .. && go run main.go > /dev/null 2>&1',
port: 3000,
reuseExistingServer: !process.env.CI,
stdout: 'pipe',
stderr: 'pipe'
}
]
};
export default config;