Very simple result object, just indicating pass/fail status, message, and the @tapjs/core!index.Extra object provided to the assertion method.

interface Result {
    extra: Extra;
    message: string;
    ok: boolean;
}

Properties

Properties

extra: Extra
message: string
ok: boolean