Skip to content

Commit

Permalink
chore: add missing async keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldp committed Nov 4, 2023
1 parent 57b5465 commit 10ab097
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions formidable/web/test/ts/app.e2e.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ const supertest = require('supertest')
describe('Application (e2e)', () => {
let app

beforeAll(() => {
beforeAll(async () => {
const application = await formidable

app = application.fastify()

await app.ready()
})

afterAll(() => {
afterAll(async () => {
await app.close()
})

Expand Down

0 comments on commit 10ab097

Please sign in to comment.