Files
console/playwright.config.ts
T
Torsten Dittmann 89ef13ba90 Add empty AI service and console profile env vars
Set empty values for AI service URL and console profile in tests to
prevent external calls during CI.
2025-11-03 21:38:54 +04:00

30 lines
916 B
TypeScript

import { type PlaywrightTestConfig } from '@playwright/test';
const config: PlaywrightTestConfig = {
timeout: 120000,
reportSlowTests: null,
reporter: [['html', { open: 'never' }]],
retries: 3,
testDir: 'e2e',
use: {
baseURL: 'http://localhost:4173/console/',
trace: 'on-first-retry'
},
webServer: {
timeout: 120000,
env: {
PUBLIC_CONSOLE_PROFILE: '',
PUBLIC_AI_SERVICE_BASE_URL: '',
PUBLIC_APPWRITE_ENDPOINT: 'https://stage.cloud.appwrite.io/v1',
PUBLIC_CONSOLE_MODE: 'cloud',
PUBLIC_APPWRITE_MULTI_REGION: 'true',
PUBLIC_STRIPE_KEY:
'pk_test_51LT5nsGYD1ySxNCyd7b304wPD8Y1XKKWR6hqo6cu3GIRwgvcVNzoZv4vKt5DfYXL1gRGw4JOqE19afwkJYJq1g3K004eVfpdWn'
},
command: 'pnpm run build && pnpm run preview',
port: 4173
}
};
export default config;