augment-vir - v31.17.1
    Preparing search index...

    Type Alias MochaTest

    An individual test context inside MochaTestContext.

    type MochaTest = {
        ctx: { test: MochaTest };
        fn: AnyFunction;
        id: string;
        parent: MochaNode;
        root?: undefined;
        title: string;
        type: "test";
    }
    Index

    Properties

    ctx: { test: MochaTest }

    The current test callback.

    id: string
    parent: MochaNode
    root?: undefined
    title: string

    The current test name.

    type: "test"