Concept-Garant/playwright.config.ts
2025-05-22 13:02:10 +03:00

19 lines
362 B
TypeScript

import { defineConfig, devices } from "@playwright/test";
export default defineConfig({
testDir: "src",
retries: 0,
reporter: "list",
fullyParallel: true,
projects: [
{
name: "Desktop Chrome",
use: { ...devices["Desktop Chrome"] },
},
],
use: {
baseURL: "https://internet.garant.ru/",
trace: "on-first-retry",
},
});