From 9c9293f736b68328e8171572e3ed7cae5e0f8167 Mon Sep 17 00:00:00 2001 From: Taylor Schley Date: Tue, 2 Aug 2022 11:28:21 -0500 Subject: [PATCH] test: fix error --- test/api/v1/config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/api/v1/config.js b/test/api/v1/config.js index ed9d07c..d5051c8 100644 --- a/test/api/v1/config.js +++ b/test/api/v1/config.js @@ -21,5 +21,8 @@ test('GET > successfully', async (t) => { const res = await api.get(rootUrl); t.is(res.status, 200); - t.like(res.body, _.omit(bree.config, 'logger')); + t.like( + res.body, + _.omit(bree.config, ['logger', 'workerMessageHandler', 'errorHandler']) + ); });