We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d24895 commit 9c9293fCopy full SHA for 9c9293f
1 file changed
test/api/v1/config.js
@@ -21,5 +21,8 @@ test('GET > successfully', async (t) => {
21
const res = await api.get(rootUrl);
22
23
t.is(res.status, 200);
24
- t.like(res.body, _.omit(bree.config, 'logger'));
+ t.like(
25
+ res.body,
26
+ _.omit(bree.config, ['logger', 'workerMessageHandler', 'errorHandler'])
27
+ );
28
});
0 commit comments