From cccc2adb6e1fb8ad7546376b557cb26725ec8def Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20B=C5=82a=C5=BCejewicz=20=28Peter=20Blazejewicz=29?= Date: Mon, 27 Jan 2020 19:48:25 +0100 Subject: [PATCH] fix(jasmine): Configuration.Promise (#41866) See: https://jasmine.github.io/api/3.5/Configuration.html https://git.io/JvqMj Thanks! --- types/jasmine/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/jasmine/index.d.ts b/types/jasmine/index.d.ts index 976eab3fba..b5b34ee0f8 100644 --- a/types/jasmine/index.d.ts +++ b/types/jasmine/index.d.ts @@ -220,7 +220,7 @@ declare namespace jasmine { oneFailurePerSpec?: boolean; hideDisabled?: boolean; specFilter?: Function; - promise?: Function; + Promise?: Function; } function clock(): Clock;