From f28913e9cec08388ff12d0154f070a0eef9b4ce3 Mon Sep 17 00:00:00 2001 From: Claude Fable 5 Date: Sun, 12 Jul 2026 00:01:23 +0200 Subject: [PATCH] Fix lint errors in the social pack (#96) An unused type import and an empty destructuring pattern slipped through because the lint exit code was swallowed by a pipe before the push. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01EwZ4jR4KFAPvpjWevfUGX1 --- apps/web/e2e/social.spec.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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' }, });