fix: increase CI step timeout to 1800s, trim cross-browser test set
- Step timeout 900→1800s to accommodate 34 tests across 5 projects - Remove test 06 (dashboard pages) from cross-browser specs — each subtest creates a wallet context, making 4× browser runs too slow - Cross-browser now runs 03 (GraphQL verification) + 07 (landing pages) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
c66b553692
commit
932c527b97
2 changed files with 5 additions and 3 deletions
|
|
@ -9,8 +9,10 @@ import { defineConfig, devices } from '@playwright/test';
|
|||
* and only run read-only / UI-rendering specs (03, 06, 07).
|
||||
*/
|
||||
|
||||
// Read-only specs safe to run in every browser/viewport after chain state exists.
|
||||
const CROSS_BROWSER_SPECS = '0[367]-*.spec.ts';
|
||||
// Lightweight read-only specs for cross-browser/viewport validation.
|
||||
// Test 06 (dashboard pages) is excluded because each subtest creates a wallet
|
||||
// context, making it too slow for 4× additional browser runs in CI.
|
||||
const CROSS_BROWSER_SPECS = '0[37]-*.spec.ts';
|
||||
|
||||
// Chromium-specific launch flags (not valid for Firefox/WebKit).
|
||||
const CHROMIUM_ARGS = ['--disable-dev-shm-usage', '--no-sandbox'];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue