From 10ab0971272898d57eb455202f96520a4bf5004e Mon Sep 17 00:00:00 2001 From: Donald Pakkies Date: Sat, 4 Nov 2023 07:06:12 +0200 Subject: [PATCH] chore: add missing async keyword --- formidable/web/test/ts/app.e2e.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/formidable/web/test/ts/app.e2e.test.ts b/formidable/web/test/ts/app.e2e.test.ts index 743ef17a..2d83fc1a 100644 --- a/formidable/web/test/ts/app.e2e.test.ts +++ b/formidable/web/test/ts/app.e2e.test.ts @@ -4,7 +4,7 @@ const supertest = require('supertest') describe('Application (e2e)', () => { let app - beforeAll(() => { + beforeAll(async () => { const application = await formidable app = application.fastify() @@ -12,7 +12,7 @@ describe('Application (e2e)', () => { await app.ready() }) - afterAll(() => { + afterAll(async () => { await app.close() })