Skip to content

Commit

Permalink
Update bug report link in test mock/mockReset (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr authored Feb 15, 2023
1 parent 0fe46d2 commit d89486d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/jest/src/__fixtures__/mock/mockReset.input.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});

Expand Down
2 changes: 1 addition & 1 deletion packages/jest/src/__fixtures__/mock/mockReset.output.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});

Expand Down

0 comments on commit d89486d

Please sign in to comment.