We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b85728c commit 8758a59Copy full SHA for 8758a59
web/src/__tests__/e2e/store-hydration.spec.ts
@@ -1,4 +1,7 @@
1
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' })
5
6
test('store hydrates agents via client fetch when SSR is empty', async ({ page }) => {
7
const agents = [
web/src/__tests__/e2e/store-ssr.spec.ts
// Disable JS to validate pure SSR HTML
test.use({ javaScriptEnabled: false })
0 commit comments