KC's Workspace
    Preparing search index...

    Options passed to the custom instrumenter factory.

    interface InstrumenterOptions {
        coverageGlobalScope: string;
        coverageGlobalScopeFunc: boolean;
        coverageVariable: string;
        ignoreClassMethods: string[];
    }
    Index
    coverageGlobalScope: string

    Global scope where the coverage variable is attached at runtime.

    coverageGlobalScopeFunc: boolean

    Whether the coverage global scope should be resolved through an evaluated function.

    coverageVariable: string

    Global variable name that Vitest uses to store coverage data at runtime.

    ignoreClassMethods: string[]

    Class method names to exclude from function coverage.