Skip to content

Commit 9c9293f

Browse files
committed
test: fix error
1 parent 5d24895 commit 9c9293f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/api/v1/config.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,8 @@ test('GET > successfully', async (t) => {
2121
const res = await api.get(rootUrl);
2222

2323
t.is(res.status, 200);
24-
t.like(res.body, _.omit(bree.config, 'logger'));
24+
t.like(
25+
res.body,
26+
_.omit(bree.config, ['logger', 'workerMessageHandler', 'errorHandler'])
27+
);
2528
});

0 commit comments

Comments
 (0)