We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4dabe7 commit fde5df3Copy full SHA for fde5df3
spec/v2/providers/https.spec.ts
@@ -577,10 +577,7 @@ describe("onCall", () => {
577
const validResp = await runHandler(func, request({ auth: { pro: true, eap: true } }));
578
expect(validResp.status).to.equal(200);
579
580
- const truthyResp = await runHandler(
581
- func,
582
- request({ auth: { pro: "true", eap: "abc" } })
583
- );
+ const truthyResp = await runHandler(func, request({ auth: { pro: "true", eap: "abc" } }));
584
expect(truthyResp.status).to.equal(200);
585
586
const missingResp = await runHandler(func, request({ auth: { pro: true } }));
0 commit comments