Type Alias MochaTest

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

An individual test context inside MochaTestContext.

Type declaration