actions fail invest: log fastify.closed
This commit is contained in:
parent
db67e81b99
commit
1c03446304
|
@ -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 () => {
|
||||||
|
|
Loading…
Reference in New Issue