poke some more at the webhook test code soup

This commit is contained in:
Paul Fitzpatrick 2024-10-09 23:11:12 -04:00
parent d2575a1ec3
commit cdd4571a77
No known key found for this signature in database
GPG Key ID: 07F16BF3214888F6

View File

@ -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); }, webhooksTestPort);
}); });
after(async function () {
await serving.shutdown();
});
describe('table endpoints', function () { describe('table endpoints', function () {
before(async function () { before(async function () {
this.timeout(30000); this.timeout(30000);