From 8fe04c5e3ce02e2dc52a791f845ed673f056cc3d Mon Sep 17 00:00:00 2001 From: Allan Lukwago Date: Wed, 21 Jun 2017 07:55:44 +0300 Subject: [PATCH] [Jest] @param for timeout --- types/jest/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/jest/index.d.ts b/types/jest/index.d.ts index 0e40091513..b886bdeaac 100644 --- a/types/jest/index.d.ts +++ b/types/jest/index.d.ts @@ -114,6 +114,7 @@ declare namespace jest { * * @param {string} name The name of your test * @param {fn?} ProvidesCallback The function for your test + * @param {timeout?} timeout The timeout for an async function test */ (name: string, fn?: ProvidesCallback, timeout?: number): void; /** Only runs this test in the current file. */