diff --git a/packages/jest/src/__fixtures__/mock/mockReset.input.js b/packages/jest/src/__fixtures__/mock/mockReset.input.js index f2686d3..4b415f5 100644 --- a/packages/jest/src/__fixtures__/mock/mockReset.input.js +++ b/packages/jest/src/__fixtures__/mock/mockReset.input.js @@ -12,7 +12,7 @@ describe("mockReset", () => { module.api.mockReset(); expect(module.api).toHaveBeenCalledTimes(0); - // Bug in jest: https://github.com/facebook/jest/issues/13808 + // Bug in jest: https://github.com/facebook/jest/issues/13916 // expect(module.api()).toStrictEqual(undefined); }); diff --git a/packages/jest/src/__fixtures__/mock/mockReset.output.js b/packages/jest/src/__fixtures__/mock/mockReset.output.js index cd18157..6a9aafc 100644 --- a/packages/jest/src/__fixtures__/mock/mockReset.output.js +++ b/packages/jest/src/__fixtures__/mock/mockReset.output.js @@ -13,7 +13,7 @@ describe("mockReset", () => { module.api.mockReset(); expect(module.api).toHaveBeenCalledTimes(0); - // Bug in jest: https://github.com/facebook/jest/issues/13808 + // Bug in jest: https://github.com/facebook/jest/issues/13916 // expect(module.api()).toStrictEqual(undefined); });