mirror of
https://github.com/actualbudget/actual.git
synced 2026-03-21 15:36:50 -05:00
* Add banners to alert users of recommended budget actions * Update wording for consistency * Release notes * Fix release notes * Code review feedback * Cleanup * Extend playwright timeout * Update Categorize button locator in test * Update VRT * Dummy commit * Streamline cover spending flow * VRT * Remove category from modal when covered and close modal when all categories are covered * Coderabbit suggestions * Update translations * VRT --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
21 lines
555 B
TypeScript
21 lines
555 B
TypeScript
import { defineConfig } from '@playwright/test';
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
export default defineConfig({
|
|
timeout: 60000, // 60 seconds
|
|
retries: 1,
|
|
testDir: 'e2e/',
|
|
reporter: !process.env.CI ? [['html', { open: 'never' }]] : undefined,
|
|
use: {
|
|
userAgent: 'playwright',
|
|
screenshot: 'on',
|
|
browserName: 'chromium',
|
|
baseURL: process.env.E2E_START_URL ?? 'http://localhost:3001',
|
|
trace: 'on-first-retry',
|
|
ignoreHTTPSErrors: true,
|
|
},
|
|
expect: {
|
|
toHaveScreenshot: { maxDiffPixels: 5 },
|
|
},
|
|
});
|