20 lines
382 B
TypeScript
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'
|
|
}
|
|
});
|