core3-utils

@wixc3/testing on Github

Home > @wixc3/testing > Predicate

Predicate type

A predicate function

Any return value other than **false** or throwing is considered as satisfying the predicate

Signature:

export type Predicate<T> = (actionResult: Awaited<T>) => boolean | Chai.Assertion | void;