Files
at-digitaltwin/playwright.config.ts
2026-01-26 17:50:18 +03:00

26 lines
547 B
TypeScript

import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: './tests',
timeout: 30000,
expect: {
timeout: 5000
},
reporter: [
['html', { outputFolder: 'playwright-report', open: 'never' }],
['list'],
['allure-playwright']
],
use: {
headless: false,
launchOptions: {
slowMo: 300,
},
viewport: { width: 1280, height: 720 },
ignoreHTTPSErrors: true,
screenshot: 'only-on-failure',
video: 'retain-on-failure',
baseURL: 'https://rumc.dev.rdcenter.ru'
}
});