mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-22 00:13:45 -05:00
12 lines
248 B
JavaScript
12 lines
248 B
JavaScript
module.exports = {
|
|
timeout: 20000, // 20 seconds
|
|
retries: 1,
|
|
testDir: 'e2e/',
|
|
use: {
|
|
screenshot: 'on',
|
|
browserName: 'chromium',
|
|
baseURL: process.env.E2E_START_URL ?? 'http://localhost:3001',
|
|
trace: 'on-first-retry',
|
|
},
|
|
};
|