12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
// playwright.config.ts
|
|
import type { PlaywrightTestConfig } from '@playwright/test';
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
// Look for test files in the "tests" directory, relative to this configuration file
|
|
testDir: 'test',
|
|
testMatch: '*e2e.spec.ts',
|
|
workers: 999,
|
|
timeout: 600000,
|
|
};
|
|
export default config;
|