fix oauth test

This commit is contained in:
riku6460 2023-09-27 02:08:18 +09:00
parent 8291dfa045
commit 0ebedafc81
No known key found for this signature in database
GPG key ID: 27414FA27DB94CF6

View file

@ -160,7 +160,7 @@ describe('OAuth', () => {
alice = await signup({ username: 'alice' }); alice = await signup({ username: 'alice' });
bob = await signup({ username: 'bob' }); bob = await signup({ username: 'bob' });
fastify = Fastify(); fastify = Fastify({ forceCloseConnections: true });
fastify.get('/', async (request, reply) => { fastify.get('/', async (request, reply) => {
sender(reply); sender(reply);
}); });