Interface StatusFormatters

interface StatusFormatters {
    fail: Fn<string, string>;
    retry: Fn<string, string>;
    success: Fn<string, string>;
}

Properties

Properties

fail: Fn<string, string>

Formatter for failed test case. Receives title of test.

retry: Fn<string, string>

Formatter for retrying a test case...

success: Fn<string, string>

Formatter for successful test case. Receives title of test.

Generated using TypeDoc