mirror of
https://github.com/go-gitea/gitea.git
synced 2026-04-02 19:26:41 +02:00
- Update all JS deps - Regenerate SVGs - Add new eslint rules from unicorn - Update typescript config for 6.0, remove deprecated options in favor of `strict` with disablements, remove implicit dom libs. - Set vite log level during `watch-frontend` to `warn` to avoid confusing URLs or HMR spam from the dev server to keep the log concise. Overridable via `FRONTEND_DEV_LOG_LEVEL`. Co-authored-by: Claude (Opus 4.6) <noreply@anthropic.com>
39 lines
881 B
TypeScript
39 lines
881 B
TypeScript
import {env} from 'node:process';
|
|
import {defineConfig, devices} from '@playwright/test';
|
|
|
|
const timeoutFactor = Number(env.GITEA_TEST_E2E_TIMEOUT_FACTOR) || 1;
|
|
const timeout = 5000 * timeoutFactor;
|
|
|
|
export default defineConfig({
|
|
testDir: './tests/e2e/',
|
|
outputDir: './tests/e2e-output/',
|
|
testMatch: /.*\.test\.ts/,
|
|
forbidOnly: Boolean(env.CI),
|
|
reporter: 'list',
|
|
timeout: 2 * timeout,
|
|
expect: {
|
|
timeout,
|
|
},
|
|
use: {
|
|
baseURL: env.GITEA_TEST_E2E_URL?.replace?.(/\/$/, ''),
|
|
locale: 'en-US',
|
|
actionTimeout: timeout,
|
|
navigationTimeout: 2 * timeout,
|
|
},
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: {
|
|
...devices['Desktop Chrome'],
|
|
permissions: ['clipboard-read', 'clipboard-write'],
|
|
},
|
|
},
|
|
...env.CI ? [{
|
|
name: 'firefox',
|
|
use: {
|
|
...devices['Desktop Firefox'],
|
|
},
|
|
}] : [],
|
|
],
|
|
});
|