* working playwright * chore: use zipped, local build of playwright instead of patching it * chore: remove bloat * chore: get playwright and lexical to work by fixing imports from cjs modules
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
import type { PlaywrightTestConfig } from '@playwright/test'
|
|
|
|
import baseConfig from './playwright.config.js'
|
|
|
|
const config: PlaywrightTestConfig = {
|
|
...baseConfig,
|
|
maxFailures: 1,
|
|
}
|
|
|
|
export default config
|