Quench
    Preparing search index...

    Interface QuenchBatchContext

    A context object passed to batch registration functions, containing functions usually imported or globally available in regular Node testing. Includes Mocha, Chai, and fast-check.

    interface QuenchBatchContext {
        after: HookFunction;
        afterEach: HookFunction;
        assert: AssertStatic;
        before: HookFunction;
        beforeEach: HookFunction;
        describe: SuiteFunction;
        expect: ExpectStatic;
        fc: __module;
        it: TestFunction;
        should: Should;
        utils: typeof utils;
    }
    Index

    Properties

    after: HookFunction
    afterEach: HookFunction
    assert: AssertStatic
    before: HookFunction
    beforeEach: HookFunction
    describe: SuiteFunction
    expect: ExpectStatic
    fc: __module
    it: TestFunction
    should: Should
    utils: typeof utils