jest-fast-check icon indicating copy to clipboard operation
jest-fast-check copied to clipboard

Property based testing for Jest based on fast-check

Results 6 jest-fast-check issues
Sort by recently updated
recently updated
newest added

Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 28.1.1 to 28.1.3. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/jest&package-manager=npm_and_yarn&previous-version=28.1.1&new-version=28.1.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

Bumps [typescript](https://github.com/Microsoft/TypeScript) from 4.7.3 to 4.7.4. Release notes Sourced from typescript's releases. TypeScript 4.7.4 For release notes, check out the release announcement. For the complete list of fixed issues, check...

dependencies

Bumps [prettier](https://github.com/prettier/prettier) from 2.7.0 to 2.7.1. Release notes Sourced from prettier's releases. 2.7.1 🔗 Changelog Changelog Sourced from prettier's changelog. 2.7.1 diff Keep useful empty lines in description (#13013 by...

dependencies

Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 17.0.44 to 18.0.0. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=17.0.44&new-version=18.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

It's a bit unfortunate that fast-check has separate lifecycle hooks than jest (e.g. fast-check has `asyncBeforeEach` and `asyncAfterEach` via `configureGlobal` while jest has `beforeEach` and `afterEach`). Seems jest doesn't have...

### Introduction Jest lets you define your own custom matchers for the `expect` global namespace. The idea here is to debate the viability for such matchers. ### Example ```js //...