UNPKG

@fast-check/jest

Version:

Property based testing for Jest based on fast-check

7 lines (6 loc) 273 B
import * as fc from 'fast-check'; import { it as itJest, test as testJest, jest } from '@jest/globals'; import { buildTest } from './internals/TestBuilder.js'; export const test = buildTest(testJest, jest, fc); export const it = buildTest(itJest, jest, fc); export { fc };