tap-fast-check
v0.4.0
Published
Property testing for Tap using fast-check
Downloads
2
Maintainers
Readme
tap-fast-check
Property testing for Tap using fast-check
import {t, fc} from "tap-fast-check"
t.test("String.indexOf()", async (t) => {
t.prop(
fc.property(fc.string(), (text) => {
return text.indexOf(text) >= 0
}),
"Always contains itself",
)
})