UNPKG

fast-check

Version:

Property based testing framework for JavaScript (like QuickCheck)

11 lines (10 loc) 177 B
/** * Status of the execution of the property * @remarks Since 1.9.0 * @public */ export declare enum ExecutionStatus { Success = 0, Skipped = -1, Failure = 1 }