diff --git a/package.json b/package.json index ff0f4c6..fa516a9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jest-mock-extended", - "version": "3.0.5", + "version": "3.0.7", "homepage": "https://github.com/marchaos/jest-mock-extended", "description": "Type safe mocking extensions for jest", "files": [ diff --git a/src/Matchers.spec.ts b/src/Matchers.spec.ts index cd62a17..fab22a4 100644 --- a/src/Matchers.spec.ts +++ b/src/Matchers.spec.ts @@ -42,9 +42,6 @@ describe('Matchers', () => { const f = jest.fn(); f(undefined); - // @ts-ignore - console.info(f.mock); - expect(f).toHaveBeenCalledWith(any()); }); });