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 e5fb0e2 commit b30fd02Copy full SHA for b30fd02
packages/hub/test/hub.test.ts
@@ -13,6 +13,7 @@ describe('Hub', () => {
13
test('call bindClient with provided client when constructing new instance', () => {
14
const testClient: any = { setupIntegrations: jest.fn() };
15
const spy = jest.spyOn(Hub.prototype, 'bindClient');
16
+ // tslint:disable-next-line:no-unused-expression
17
new Hub(testClient);
18
expect(spy).toHaveBeenCalledWith(testClient);
19
});
0 commit comments