Skip to content

Latest commit

 

History

History
53 lines (43 loc) · 3.45 KB

File metadata and controls

53 lines (43 loc) · 3.45 KB

Change Log

0.0.4 (2025-05-10)

Breaking changes

  • expect.not.toBeFalsy has been removed (use expect.toBeTruthy instead)
  • expect.not.toBeTruthy has been removed (use expect.toBeFalsy instead)
  • expect.not.toReject has been removed (use expect.toResolve instead)
  • expect.toResolve no longer accepts parameters (use expect(await actual).toBe(expected) or .toEqual(expected) instead)
  • isFalsy has been removed (type guarding did not always work accurately, especially with unknown and any)
  • isTruthy has been removed (type guarding did not always work accurately, especially with unknown and any)

New features

Bug fixes

  • Optional.map now removes null and undefined from the mapper's return value

0.0.3 (2025-03-21)

New features