@types/jasmine-data_driven_tests
TypeScript icon, indicating that this package has built-in type declarations

1.0.9 • Public • Published

Installation

npm install --save @types/jasmine-data_driven_tests

Summary

This package contains type definitions for jasmine-data_driven_tests (https://github.com/gburghardt/jasmine-data_driven_tests).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jasmine-data_driven_tests.

index.d.ts

declare var all: JasmineDataDrivenTest;
declare var xall: JasmineDataDrivenTest;
declare var using: JasmineDataDrivenTest;
declare var xusing: JasmineDataDrivenTest;

interface JasmineDataDrivenTest {
    <T, U, V, W, X, Y, Z>(
        description: string,
        dataset: Array<[T, U, V, W, X, Y, Z]>,
        assertion: (arg0: T, arg1: U, arg2: V, arg3: W, arg4: X, arg5: Y, arg6: Z, done: () => void) => void,
    ): void;
    <T, U, V, W, X, Y>(
        description: string,
        dataset: Array<[T, U, V, W, X, Y]>,
        assertion: (arg0: T, arg1: U, arg2: V, arg3: W, arg4: X, arg5: Y, done: () => void) => void,
    ): void;
    <T, U, V, W, X>(
        description: string,
        dataset: Array<[T, U, V, W, X]>,
        assertion: (arg0: T, arg1: U, arg2: V, arg3: W, arg4: X, done: () => void) => void,
    ): void;
    <T, U, V, W>(
        description: string,
        dataset: Array<[T, U, V, W]>,
        assertion: (arg0: T, arg1: U, arg2: V, arg3: W, done: () => void) => void,
    ): void;
    <T, U, V>(
        description: string,
        dataset: Array<[T, U, V]>,
        assertion: (arg0: T, arg1: U, arg2: V, done: () => void) => void,
    ): void;
    <T, U>(
        description: string,
        dataset: Array<[T, U]>,
        assertion: (arg0: T, arg1: U, done: () => void) => void,
    ): void;
    <T>(
        description: string,
        dataset: T[] | Array<[T]>,
        assertion: (value: T, done: () => void) => void,
    ): void;
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 03:09:37 GMT
  • Dependencies: none

Credits

These definitions were written by Anthony MacKinnon.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/jasmine-data_driven_tests

Weekly Downloads

22

Version

1.0.9

License

MIT

Unpacked Size

5.67 kB

Total Files

5

Last publish

Collaborators

  • types