Node TAP
    Preparing search index...

    Variable configConst

    config: {
        "filter-quietly": { description: string; type: string };
        grep: {
            description: string;
            hint: string;
            multiple: boolean;
            nodeArgs: (value: string[]) => string[];
            short: string;
            type: string;
        };
        invert: { description: string; short: string; type: string };
        "no-filter-quietly": { description: string; type: string };
        "no-invert": { description: string; short: string; type: string };
        only: {
            description: string;
            nodeArgs: (v: boolean) => string[];
            short: string;
            type: string;
        };
    } = ...

    Configuration options added by this plugin

    Type Declaration

    • filter-quietly: { description: string; type: string }

      flag

      Do not apply a skip message to tests filtered using --grep and --only.

      Enabled by default if --fail-skip is set.

    • grep: {
          description: string;
          hint: string;
          multiple: boolean;
          nodeArgs: (value: string[]) => string[];
          short: string;
          type: string;
      }

      string option

      Only run subtests tests matching the specified pattern.

      Patterns are matched against top-level subtests in each file. To filter tests at subsequent levels, specify this option multiple times.

      To specify regular expression flags, format pattern like a JavaScript RegExp literal. For example: /xyz/i for case-insensitive matching.

    • invert: { description: string; short: string; type: string }

      flag

      Invert the matches to --grep patterns. (Like grep -v)

    • no-filter-quietly: { description: string; type: string }
    • no-invert: { description: string; short: string; type: string }

      flag

      Do not invert the matches to --grep patterns. (default)

    • only: {
          description: string;
          nodeArgs: (v: boolean) => string[];
          short: string;
          type: string;
      }

      flag

      Only run tests with {only: true} option, or created with the t.only(...) function.