UNPKG

patch-package

Version:

When forking just won't work, patch it.

11 lines (9 loc) 260 B
import { generateTestCase } from "./testCases" import { executeTestCase } from "./executeTestCase" describe("property based tests", () => { for (let i = 0; i < 200; i++) { describe(`${i}`, () => { executeTestCase(generateTestCase()) }) } })