From f87d82b93d474d1290b3c641e63a39197193cb7e Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Wed, 13 Oct 2021 11:52:42 +0200 Subject: [PATCH] Fix config test cleanup --- server/tests/api/server/config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/tests/api/server/config.ts b/server/tests/api/server/config.ts index e057ec1a2..8363318f6 100644 --- a/server/tests/api/server/config.ts +++ b/server/tests/api/server/config.ts @@ -392,6 +392,10 @@ describe('Test static config', function () { it('Should error when client tries to update', async function () { await server.config.updateCustomConfig({ newCustomConfig, expectedStatus: 405 }) }) + + after(async function () { + await cleanupTests([ server ]) + }) }) describe('Test config', function () {