From 94b07b2bc30eb0d92be86ce02d92125233cd608f Mon Sep 17 00:00:00 2001 From: dakkar Date: Tue, 13 May 2025 16:30:41 +0100 Subject: [PATCH] linting --- packages/backend/test/e2e/oauth.ts | 6 +++--- packages/backend/test/utils.ts | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/packages/backend/test/e2e/oauth.ts b/packages/backend/test/e2e/oauth.ts index cecdec848a..aba7a15d28 100644 --- a/packages/backend/test/e2e/oauth.ts +++ b/packages/backend/test/e2e/oauth.ts @@ -155,11 +155,11 @@ async function assertDirectError(response: Response, status: number, error: stri describe('OAuth', () => { test('fake pass', () => { assert.ok(true, 'fake pass'); - }) + }); }); -false && // these tests won't pass until we integrate Misskey's OAuth code with ours -describe('OAuth', () => { +// these tests won't pass until we integrate Misskey's OAuth code with ours +if (false) describe('OAuth', () => { let fastify: FastifyInstance; let alice: misskey.entities.SignupResponse; diff --git a/packages/backend/test/utils.ts b/packages/backend/test/utils.ts index 0b5bf38cc2..0e7a0b591f 100644 --- a/packages/backend/test/utils.ts +++ b/packages/backend/test/utils.ts @@ -692,7 +692,6 @@ export async function captureWebhook(postAction: () => return JSON.parse(result) as T; } - // the packed user inside each note returned by `users/notes` has the // latest `notesCount`, not the count at the time the note was // created, so we override it