perf(e2e): reduce post-sync settle delay from 300ms to 100ms

Phase 1.1 of E2E test optimization. Reduces the settle delay in
syncAndWait() since waitForSyncComplete() already polls for completion.

Expected impact: ~10-15s saved per test
Risk: Low - polling already ensures sync is complete
This commit is contained in:
Johannes Millan 2026-01-18 15:52:32 +01:00
parent a8d154530e
commit 4c738186f3

View file

@ -584,8 +584,8 @@ export class SuperSyncPage extends BasePage {
async syncAndWait(): Promise<void> {
await this.triggerSync();
await this.waitForSyncComplete();
// Allow UI to settle after sync - reduces flakiness
await this.page.waitForTimeout(300);
// Allow UI to settle after sync - reduces flakiness (reduced from 300ms)
await this.page.waitForTimeout(100);
}
/**