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']) + ); });