KC's Workspace
    Preparing search index...
    interface TestResultSkipped {
        errors: undefined;
        note: string | undefined;
        state: "skipped";
    }
    Index

    Properties

    Properties

    errors: undefined

    Skipped tests have no errors.

    note: string | undefined

    A custom note passed down to ctx.skip(note).

    state: "skipped"

    The test was skipped with only (on another test), skip or todo flag. You can see which one was used in the options.mode option.