jest-extended icon indicating copy to clipboard operation
jest-extended copied to clipboard

Additional Jest matchers 🃏💪

Results 150 jest-extended issues
Sort by recently updated
recently updated
newest added

**Bug** - `package` version: 2.0.0 - `node` version: 16.13.0 - `npm` (or `yarn`) version: 8.1.0 I have a project using `jest`, `ts-jest` and `jest-extended`. One of my test.ts files uses...

## 🚀 Feature Proposal As a developper I want my test to be able to fail on multiple expects so that I can debug/test faster (I posted an issue on...

The following is an example from the README documentation https://github.com/jest-community/jest-extended/blob/d8bd6ad4aa6df90c59026ae8344bd4b35b1abb0c/README.md?plain=1#L466-L469 In this example a date string is compared against a date. This is understandably useful because both datestrings and Dates...

**Feature Request** Description:implement .toIncludeCaseInsensitive Possible solution: a combination of .toInclude(substring) and .toEqualCaseInsensitive(string)

### 🚀 Feature request Implement a `calledTimesWith` matcher to match how many times a function was called with a given argument (or set of arguments). ### Motivation Today it is...

### What All the matchers that were using generic, weren't taking advantage of the full potential of typescript. ### Why The vast majority of matchers related to Array, Object and...

**Feature Request** Description: In other testing tool, there was a matcher that expects some value to be changed by specified amount or from a value to a value. Usually a...

### What During the initial implementation of `toThrowWithMessage` I forgot to handle the `.not` during validation. As such, when a user uses `.not`, validation doesn't work at all. ### Why...

### What Adds a codesandbox REPL for majority of the matchers ### Notes This PR adds conventions around how the README is generated, instead of being the source of truth,...

**Feature request:** When using `.toResolve` or `.toReject` and the promise doesn't settle as we expected we see the error: > Expected promise to resolve but rejected instead (This error is...