Skip to content
This repository has been archived by the owner on Aug 25, 2021. It is now read-only.

Commit

Permalink
fix: fix hub test
Browse files Browse the repository at this point in the history
  • Loading branch information
mariodu committed Dec 14, 2018
1 parent f11ab56 commit da4093b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/hub/test/hub/Hub.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ describe('Hub', function () {
const hub = new Hub();
await hub.start();
await new Promise(resolve => (<any> hub).messengerServer.close(resolve));
await expect(hub.stop()).to.be.rejectedWith('not running');
await expect(hub.stop()).to.be.rejectedWith(/not running/i);
});

});
Expand Down

0 comments on commit da4093b

Please sign in to comment.