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

(Copied from https://github.com/facebook/jest/issues/5880) **Do you want to request a _feature_ or report a _bug_?** A feature I dumped the template as it doesn't fit feature requests very well. Hope you...

help wanted

### What Adding toIncludeAllMembersInOrder. ### Why Fixes https://github.com/jest-community/jest-extended/issues/231 ### Notes ### Housekeeping - [x] Unit tests - [x] Documentation is up to date - [x] No additional lint warnings -...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@mdx-js/react](https://mdxjs.com) ([source](https://togithub.com/mdx-js/mdx/tree/HEAD/packages/react/)) | [`^1.6.22` -> `^3.0.0`](https://renovatebot.com/diffs/npm/@mdx-js%2freact/1.6.22/3.0.1) |...

Stuff like #506 sneak in all the time. We should have unit tests of our types in this repo. In the Jest repo we use https://github.com/jest-community/jest-runner-tsd (https://github.com/facebook/jest/blob/1a767e0f1fc21c008ce77a69eda914c152cc067b/package.json#L111) - it (or...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@docusaurus/core](https://togithub.com/facebook/docusaurus) | [`2.0.1` -> `2.1.0`](https://renovatebot.com/diffs/npm/@docusaurus%2fcore/2.0.1/2.1.0) | [![age](https://badges.renovateapi.com/packages/npm/@docusaurus%2fcore/2.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [react](https://reactjs.org/) ([source](https://togithub.com/facebook/react/tree/HEAD/packages/react)) | [`^17.0.2` -> `^18.0.0`](https://renovatebot.com/diffs/npm/react/17.0.2/18.2.0) |...

### What When using `toReject` / `toResolve`, print more detailed failure reason (e.g. when `toResolve` gets a rejected promise, the rejection value will be printed for easier troubleshooting (as discussed...

I have basic test ``` it('boo', () => { expect(null).toBeNil(); expect(undefined).toBeNil(); expect(true).not.toBeNil(); expect(undefined).toEqual(expect.toBeNil()); expect({value: null}).toEqual({value: expect.toBeNil()}); expect({value: undefined}).toEqual({value: expect.toBeNil()}); }); ``` And I expect that test should pass, but it...

[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`^5.30.6` -> `^7.0.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/5.62.0/7.1.1) |...

### What Improve the error message in case actual and expected do not match ### Why #639 ### Notes Before I add the matching coverage I would appreciate a review...