From cef3a6f728de99f1c30dda112c10b7570db2e0d2 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Sat, 3 Feb 2018 18:38:38 +0100 Subject: [PATCH] Revert "Remove global spyOn, pending, fail (#23226)" This reverts commit f08ec1c02ffbc2c26297d5d6eae2e288053a8e8a. --- types/jest/index.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/types/jest/index.d.ts b/types/jest/index.d.ts index e3cac9b881..e0d73d5c9e 100644 --- a/types/jest/index.d.ts +++ b/types/jest/index.d.ts @@ -548,6 +548,16 @@ declare namespace jest { // Relevant parts of Jasmine's API are below so they can be changed and removed over time. // This file can't reference jasmine.d.ts since the globals aren't compatible. +declare function spyOn(object: any, method: string): jasmine.Spy; +/** + * If you call the function pending anywhere in the spec body, + * no matter the expectations, the spec will be marked pending. + */ +declare function pending(reason?: string): void; +/** + * Fails a test when called within one. + */ +declare function fail(error?: any): void; declare namespace jasmine { let DEFAULT_TIMEOUT_INTERVAL: number; function clock(): Clock;