@types/jest
Advanced tools
Comparing version 18.1.0 to 18.1.1
@@ -112,3 +112,3 @@ // Type definitions for Jest 18.1.0 | ||
* Creates a test closure. | ||
* | ||
* | ||
* @param {string} name The name of your test | ||
@@ -156,5 +156,5 @@ * @param {fn?} ProvidesCallback The function for your test | ||
interface Expect { | ||
/** | ||
* The `expect` function is used every time you want to test a value. You will rarely call `expect` by itself. | ||
* | ||
/** | ||
* The `expect` function is used every time you want to test a value. You will rarely call `expect` by itself. | ||
* | ||
* @param {any} actual The value to apply matchers against. | ||
@@ -260,4 +260,4 @@ */ | ||
type Mocked<T> = { | ||
[P in keyof T]: T[P] & MockInstance<T>; | ||
}; | ||
[P in keyof T]: T[P] & MockInstance<T[P]>; | ||
} & T; | ||
@@ -264,0 +264,0 @@ interface MockInstance<T> { |
{ | ||
"name": "@types/jest", | ||
"version": "18.1.0", | ||
"version": "18.1.1", | ||
"description": "TypeScript definitions for Jest", | ||
@@ -15,4 +15,4 @@ "license": "MIT", | ||
"peerDependencies": {}, | ||
"typesPublisherContentHash": "511043d6cc56ea42f2dabb0213723997bc1b5032f84db39237a6cf961cab4250", | ||
"typesPublisherContentHash": "ff5fa37a2e4391662d8fd203d8cbfc2eed516fd9d99965f48c27bb3970522219", | ||
"typeScriptVersion": "2.1" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Mon, 30 Jan 2017 20:41:24 GMT | ||
* Last updated: Wed, 01 Feb 2017 08:10:58 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: afterAll, afterEach, beforeAll, beforeEach, describe, expect, fail, fdescribe, fit, it, jasmine, jest, pending, spyOn, test, xdescribe, xit, xtest |
@@ -41,5 +41,5 @@ { | ||
"hasPackageJson": false, | ||
"contentHash": "511043d6cc56ea42f2dabb0213723997bc1b5032f84db39237a6cf961cab4250" | ||
"contentHash": "ff5fa37a2e4391662d8fd203d8cbfc2eed516fd9d99965f48c27bb3970522219" | ||
}, | ||
"isLatest": true | ||
} |
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
23631