From 057e3ada1519e28ffff1c6d769b3080e6d973d8e Mon Sep 17 00:00:00 2001 From: gstamac Date: Thu, 22 Aug 2013 13:17:13 +0200 Subject: [PATCH] Jasmine-jQuery: toBeDisabled and toBeFocused shouldn't have parameters --- jasmine-jquery/jasmine-jquery.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jasmine-jquery/jasmine-jquery.d.ts b/jasmine-jquery/jasmine-jquery.d.ts index 6fa4be7e7..15dca75d6 100644 --- a/jasmine-jquery/jasmine-jquery.d.ts +++ b/jasmine-jquery/jasmine-jquery.d.ts @@ -98,8 +98,8 @@ declare module jasmine { toBe(selector: JQuery): boolean; toContain(selector: JQuery): boolean; toBeMatchedBy(selector: JQuery): boolean; - toBeDisabled(selector: JQuery): boolean; - toBeFocused(selector: JQuery): boolean; + toBeDisabled(): boolean; + toBeFocused(): boolean; toHandle(event): boolean; toHandleWith(eventName: string, eventHandler): boolean;