Installation
npm install --save @types/mocha-each
Summary
This package contains type definitions for mocha-each (https://github.com/ryym/mocha-each#readme).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mocha-each.
import { Context, Suite, SuiteFunction, Test, TestFunction } from "mocha";
declare function forEach(
parameters: readonly any[],
dIt?: TestFunction,
dDescribe?: SuiteFunction,
): { it: ForEachTestFunction; describe: ForEachDescribeDefinition };
interface ForEachTestFunction {
(expectation: string, callback?: (this: Context, ...args: any[]) => any): Test;
only(expectation: string, callback?: (this: Context, ...args: any[]) => any): Test;
skip(expectation: string, callback?: (this: Context, ...args: any[]) => any): Test;
}
interface ForEachDescribeDefinition {
(expectation: string, callback?: (this: Context, ...args: any[]) => any): Suite;
only(expectation: string, callback?: (this: Context, ...args: any[]) => any): Suite;
skip(expectation: string, callback?: (this: Context, ...args: any[]) => any): Suite;
}
export = forEach;
Additional Details
- Last updated: Mon, 20 Nov 2023 23:36:24 GMT
- Dependencies: @types/mocha
Credits
These definitions were written by Tom Harley, and Noah May.