Skip to content

Commit

Permalink
build(sinon) fix more TypeScript compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Igor Savin committed Feb 14, 2019
1 parent 72b84ec commit 4930974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/websockets/test/socket-server-provider.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('SocketServerProvider', () => {
const port = 30;

beforeEach(() => {
createSocketServerSpy = sinon.spy(instance, 'createSocketServer');
createSocketServerSpy = sinon.spy(instance, 'createSocketServer' as any);
});
afterEach(() => {
mockContainer.restore();
Expand Down

0 comments on commit 4930974

Please sign in to comment.