7 lines
112 B
JavaScript
7 lines
112 B
JavaScript
// minimal Playwright config for local E2E
|
|
module.exports = {
|
|
use: { headless: true },
|
|
timeout: 30_000,
|
|
};
|
|
|