diff --git a/apps/web/e2e/social.spec.ts b/apps/web/e2e/social.spec.ts index 7d4fdac..6af1bf7 100644 --- a/apps/web/e2e/social.spec.ts +++ b/apps/web/e2e/social.spec.ts @@ -1,5 +1,5 @@ import { expect, test } from '@playwright/test'; -import type { APIRequestContext, BrowserContext } from '@playwright/test'; +import type { BrowserContext } from '@playwright/test'; import { contextForUser } from './helpers'; @@ -67,8 +67,7 @@ test.afterAll(async () => { await watcher.close(); }); -test('a comment notifies the watcher, never the actor, and read state sticks', async ({}, testInfo) => { - testInfo.setTimeout(20_000); +test('a comment notifies the watcher, never the actor, and read state sticks', async () => { const commented = await owner.request.post(`/api/v1/pages/${pageId}/comments`, { data: { body: 'ping the watchers' }, });