loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request 'Do not run e2e tests in parallel' (#2440) from maltejur/forgejo:e2e_parallel into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2440

+7
+7
playwright.config.js
··· 11 11 testDir: './tests/e2e/', 12 12 testMatch: /.*\.test\.e2e\.js/, // Match any .test.e2e.js files 13 13 14 + /** 15 + * Only run one test at a time, running multiple could lead to a inconsistent 16 + * database state. 17 + */ 18 + fullyParallel: false, 19 + workers: 1, 20 + 14 21 /* Maximum time one test can run for. */ 15 22 timeout: 30 * 1000, 16 23