From 1c0344630409bb99e820d50323a1ad2812761087 Mon Sep 17 00:00:00 2001 From: tamaina Date: Sun, 20 Jul 2025 21:31:41 +0900 Subject: [PATCH] actions fail invest: log fastify.closed --- packages/backend/test/e2e/oauth.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/backend/test/e2e/oauth.ts b/packages/backend/test/e2e/oauth.ts index b9718bcec4..f3c6d5a97c 100644 --- a/packages/backend/test/e2e/oauth.ts +++ b/packages/backend/test/e2e/oauth.ts @@ -152,7 +152,7 @@ async function assertDirectError(response: Response, status: number, error: stri assert.strictEqual(data.error, error); } -describe.skip('OAuth', () => { +describe('OAuth', () => { let fastify: FastifyInstance; let alice: misskey.entities.SignupResponse; @@ -183,7 +183,9 @@ describe.skip('OAuth', () => { }); afterAll(async () => { + console.log('closing fastify...'); await fastify.close(); + console.log('fastify closed.'); }); test('Full flow', async () => {