@types/jest
Advanced tools
Comparing version 24.0.9 to 24.0.10
// Type definitions for Jest 24.0 | ||
// Project: http://facebook.github.io/jest/ | ||
// Project: https://jestjs.io | ||
// Definitions by: Asana <https://asana.com> | ||
@@ -267,3 +267,19 @@ // Ivo Stratev <https://github.com/NoHomey> | ||
interface Each { | ||
(cases: any[]): (name: string, fn: (...args: any[]) => any, timeout?: number) => void; | ||
// Exclusively arrays. | ||
<T extends any[]>(cases: ReadonlyArray<T>): ( | ||
name: string, | ||
fn: (...args: T) => any, | ||
timeout?: number | ||
) => void; | ||
// Not arrays. | ||
<T>(cases: ReadonlyArray<T>): ( | ||
name: string, | ||
fn: (...args: T[]) => any, | ||
timeout?: number | ||
) => void; | ||
(cases: ReadonlyArray<ReadonlyArray<any>>): ( | ||
name: string, | ||
fn: (...args: any[]) => any, | ||
timeout?: number | ||
) => void; | ||
(strings: TemplateStringsArray, ...placeholders: any[]): ( | ||
@@ -270,0 +286,0 @@ name: string, |
{ | ||
"name": "@types/jest", | ||
"version": "24.0.9", | ||
"version": "24.0.10", | ||
"description": "TypeScript definitions for Jest", | ||
@@ -108,4 +108,4 @@ "license": "MIT", | ||
}, | ||
"typesPublisherContentHash": "acd7be7641a43bcca3b34e7674f649ed40eb92fc04c888542df13f73d6c6dd51", | ||
"typesPublisherContentHash": "20bb84d9953c9a5b8bd02295b268b3df7003cabed5038c70a15e90c7ff53db6f", | ||
"typeScriptVersion": "3.0" | ||
} |
@@ -5,3 +5,3 @@ # Installation | ||
# Summary | ||
This package contains type definitions for Jest ( http://facebook.github.io/jest/ ). | ||
This package contains type definitions for Jest ( https://jestjs.io ). | ||
@@ -12,3 +12,3 @@ # Details | ||
Additional Details | ||
* Last updated: Tue, 26 Feb 2019 05:19:58 GMT | ||
* Last updated: Fri, 08 Mar 2019 18:46:02 GMT | ||
* Dependencies: @types/jest-diff | ||
@@ -15,0 +15,0 @@ * Global values: afterAll, afterEach, beforeAll, beforeEach, describe, expect, fail, fdescribe, fit, it, jasmine, jest, pending, spyOn, test, xdescribe, xit, xtest |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
69342
1646