actions fail invest: log fastify.closed

This commit is contained in:
tamaina 2025-07-20 21:31:41 +09:00
parent db67e81b99
commit 1c03446304
1 changed files with 3 additions and 1 deletions

View File

@ -152,7 +152,7 @@ async function assertDirectError(response: Response, status: number, error: stri
assert.strictEqual(data.error, error); assert.strictEqual(data.error, error);
} }
describe.skip('OAuth', () => { describe('OAuth', () => {
let fastify: FastifyInstance; let fastify: FastifyInstance;
let alice: misskey.entities.SignupResponse; let alice: misskey.entities.SignupResponse;
@ -183,7 +183,9 @@ describe.skip('OAuth', () => {
}); });
afterAll(async () => { afterAll(async () => {
console.log('closing fastify...');
await fastify.close(); await fastify.close();
console.log('fastify closed.');
}); });
test('Full flow', async () => { test('Full flow', async () => {