ihm_client/playwright.config.ts
Your Name 8a94c57c2a
Some checks failed
CI/CD Pipeline / test (push) Failing after 8s
CI/CD Pipeline / security (push) Has been skipped
CI/CD Pipeline / integration-test (push) Has been skipped
e2e: config Playwright + test smoke; CI: installer et exécuter E2E; docs TESTING mise à jour
2025-08-26 07:03:08 +02:00

14 lines
293 B
TypeScript

import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
testDir: './tests/e2e',
timeout: 30000,
use: {
baseURL: 'http://localhost:3000',
headless: true,
},
projects: [
{ name: 'chromium', use: { ...devices['Desktop Chrome'] } },
],
});