Co-authored-by: James <james@trbl.design> Co-authored-by: Dan Ribbens <dan.ribbens@gmail.com>
10 lines
278 B
TypeScript
10 lines
278 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/e2e',
|
|
workers: 999,
|
|
};
|
|
export default config;
|