From cdd4571a778a248819c37da20559cb4459d04e26 Mon Sep 17 00:00:00 2001 From: Paul Fitzpatrick Date: Wed, 9 Oct 2024 23:11:12 -0400 Subject: [PATCH] poke some more at the webhook test code soup --- test/server/lib/DocApi.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/server/lib/DocApi.ts b/test/server/lib/DocApi.ts index b2efb6b6..48a207f7 100644 --- a/test/server/lib/DocApi.ts +++ b/test/server/lib/DocApi.ts @@ -3589,7 +3589,8 @@ function testDocApi(settings: { } }] }, - 403, /Column not found notExisting/); + // this check was previously just wrong, was the test not running somehow?? + 404, /Column not found "notExisting"/); }); @@ -4139,6 +4140,10 @@ function testDocApi(settings: { }, webhooksTestPort); }); + after(async function () { + await serving.shutdown(); + }); + describe('table endpoints', function () { before(async function () { this.timeout(30000);