Skip to content

Commit

Permalink
test(cluster): remove unnecessary await
Browse files Browse the repository at this point in the history
  • Loading branch information
mKeRix committed Feb 1, 2020
1 parent 47e66ff commit 9f93de9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cluster/cluster.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ describe('ClusterService', () => {
});
});

it('should start advertising room-assistant via Bonjour', async () => {
await service.onApplicationBootstrap();
it('should start advertising room-assistant via Bonjour', () => {
service.onApplicationBootstrap();
expect(mockMdns.createAdvertisement).toHaveBeenCalledWith(
{ name: 'room-assistant' },
6425,
Expand Down

0 comments on commit 9f93de9

Please sign in to comment.