Skip to content

Commit

Permalink
Merge pull request #327 from formidablejs/fix/scaffold-test
Browse files Browse the repository at this point in the history
chore: add missing async keyword
  • Loading branch information
donaldp authored Nov 4, 2023
2 parents 57b5465 + 10ab097 commit 089dbab
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 089dbab

Please sign in to comment.