UNPKG

775 BTypeScriptView Raw
1/**
2 * Verbosity level
3 * @remarks Since 1.9.1
4 * @public
5 */
6export declare enum VerbosityLevel {
7 /**
8 * Level 0 (default)
9 *
10 * Minimal reporting:
11 * - minimal failing case
12 * - error log corresponding to the minimal failing case
13 *
14 * @remarks Since 1.9.1
15 */
16 None = 0,
17 /**
18 * Level 1
19 *
20 * Failures reporting:
21 * - same as `VerbosityLevel.None`
22 * - list all the failures encountered during the shrinking process
23 *
24 * @remarks Since 1.9.1
25 */
26 Verbose = 1,
27 /**
28 * Level 2
29 *
30 * Execution flow reporting:
31 * - same as `VerbosityLevel.None`
32 * - all runs with their associated status displayed as a tree
33 *
34 * @remarks Since 1.9.1
35 */
36 VeryVerbose = 2
37}