Skip to content

Commit 8758a59

Browse files
committed
ci(web): skip Playwright e2e tests by default to reduce CI latency; add note on enabling in non-latency-sensitive workflows
1 parent b85728c commit 8758a59

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

web/src/__tests__/e2e/store-hydration.spec.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
import { test, expect } from '@playwright/test'
2+
// Skip e2e in default CI to reduce latency. Consider enabling
3+
// in a non-latency-sensitive workflow or on-demand nightly runs.
4+
test.describe.configure({ mode: 'skip' })
25

36
test('store hydrates agents via client fetch when SSR is empty', async ({ page }) => {
47
const agents = [

web/src/__tests__/e2e/store-ssr.spec.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
import { test, expect } from '@playwright/test'
2+
// Skip e2e in default CI to reduce latency. Consider enabling
3+
// in a non-latency-sensitive workflow or on-demand nightly runs.
4+
test.describe.configure({ mode: 'skip' })
25

36
// Disable JS to validate pure SSR HTML
47
test.use({ javaScriptEnabled: false })

0 commit comments

Comments
 (0)