Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@types/jest

Package Overview
Dependencies
Maintainers
1
Versions
209
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/jest - npm Package Compare versions

Comparing version 24.0.9 to 24.0.10

20

jest/index.d.ts
// 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,

4

jest/package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc