- Set up Playwright configuration for headless testing - Created comprehensive test suite covering: * Home page loading * Upload modal interaction * Search page navigation * Document viewing with PDF canvas * PDF text selection layer * Search functionality * Navigation breadcrumbs * Responsive layouts (desktop/tablet/mobile) All 8 tests passing successfully. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
669 B
JavaScript
32 lines
669 B
JavaScript
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
export default defineConfig({
|
|
testDir: './tests/e2e',
|
|
fullyParallel: false,
|
|
forbidOnly: !!process.env.CI,
|
|
retries: process.env.CI ? 2 : 0,
|
|
workers: 1,
|
|
reporter: 'html',
|
|
|
|
use: {
|
|
baseURL: 'http://localhost:8083',
|
|
trace: 'on-first-retry',
|
|
screenshot: 'only-on-failure',
|
|
video: 'retain-on-failure',
|
|
headless: true,
|
|
},
|
|
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: { ...devices['Desktop Chrome'] },
|
|
},
|
|
],
|
|
|
|
webServer: {
|
|
command: 'echo "Using existing dev server"',
|
|
url: 'http://localhost:8083',
|
|
reuseExistingServer: true,
|
|
timeout: 5000,
|
|
},
|
|
});
|