We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
await
1 parent ab96e55 commit 41f19ccCopy full SHA for 41f19cc
packages/frameworks-express/test/http-api-adapters/request.test.ts
@@ -67,7 +67,7 @@ describe("toWebRequest", () => {
67
const request = toWebRequest(req)
68
69
expectations = async () => {
70
- expectMatchingJsonRequestBody(req, request)
+ await expectMatchingJsonRequestBody(req, request)
71
}
72
73
res.send("OK")
@@ -91,7 +91,7 @@ describe("toWebRequest", () => {
91
92
93
94
- expectMatchingUrlEncodedRequestBody(req, request)
+ await expectMatchingUrlEncodedRequestBody(req, request)
95
96
97
0 commit comments