Concept-Garant/playwright.config.ts
2025-05-22 19:50:19 +03:00

20 lines
382 B
TypeScript

import { defineConfig, devices } from '@playwright/test';
export default defineConfig({
testDir: 'src',
retries: 0,
reporter: 'list',
timeout: 30 * 1000,
fullyParallel: true,
projects: [
{
name: 'Desktop Chrome',
use: { ...devices['Desktop Chrome'] }
}
],
use: {
baseURL: 'https://internet.garant.ru/',
storageState: 'auth.json'
}
});