Some checks are pending
Auto-update PR branches / Update open PR branches (push) Waiting to run
CI / Frontend Static Quality Checks (push) Waiting to run
CI / Frontend Tests & Coverage (push) Waiting to run
CI / Rust Tests & Quality Checks (push) Waiting to run
CI / Linux build verification (push) Waiting to run
Deploy docs / Build VitePress site (push) Waiting to run
Deploy docs / Deploy to GitHub Pages (push) Blocked by required conditions
Release (Alpha) / Compute alpha version (push) Waiting to run
Release (Alpha) / Build release artifacts (push) Blocked by required conditions
Release (Alpha) / GitHub Release (alpha) (push) Blocked by required conditions
Release (Alpha) / Update docs and release pages (push) Blocked by required conditions
Source snapshot: 514ab1975951d94342ea38e64101d5a0f1c51c77
33 lines
767 B
TypeScript
33 lines
767 B
TypeScript
import { defineConfig } from '@playwright/test'
|
|
|
|
const baseURL = process.env.BASE_URL || 'http://localhost:5201'
|
|
const claudeCodeOnboardingStorageState = {
|
|
cookies: [],
|
|
origins: [
|
|
{
|
|
origin: baseURL,
|
|
localStorage: [
|
|
{ name: 'tolaria:claude-code-onboarding-dismissed', value: '1' },
|
|
],
|
|
},
|
|
],
|
|
}
|
|
|
|
export default defineConfig({
|
|
testDir: './tests/smoke',
|
|
timeout: 20_000,
|
|
retries: 2,
|
|
workers: 1,
|
|
use: {
|
|
baseURL,
|
|
headless: true,
|
|
storageState: claudeCodeOnboardingStorageState,
|
|
},
|
|
projects: [{ name: 'chromium', use: { browserName: 'chromium' } }],
|
|
webServer: {
|
|
command: `pnpm dev --port ${process.env.BASE_URL?.match(/:(\d+)/)?.[1] || '5201'}`,
|
|
url: baseURL,
|
|
reuseExistingServer: true,
|
|
},
|
|
})
|