From 56911d3cee8ad65cc5a4de2e6cc98033d52e6926 Mon Sep 17 00:00:00 2001 From: Basarat Ali Syed Date: Tue, 1 Jul 2014 23:07:36 +1000 Subject: [PATCH] Update jasmine-1.3.d.ts --- jasmine/legacy/jasmine-1.3.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jasmine/legacy/jasmine-1.3.d.ts b/jasmine/legacy/jasmine-1.3.d.ts index 96540bc8c..93aed2ffc 100644 --- a/jasmine/legacy/jasmine-1.3.d.ts +++ b/jasmine/legacy/jasmine-1.3.d.ts @@ -5,12 +5,12 @@ declare function describe(description: string, specDefinitions: () => void): void; -declare function ddescribe(description: string, specDefinitions: () => void): void; +// declare function ddescribe(description: string, specDefinitions: () => void): void; is not a part of jasmine. It is something angular adds declare function xdescribe(description: string, specDefinitions: () => void): void; declare function it(expectation: string, assertion: () => void): void; declare function it(expectation: string, assertion: (done: (err?: any) => void) => void): void; -declare function iit(expectation: string, assertion: () => void): void; +// declare function iit(expectation: string, assertion: () => void): void; is not a part of jasmine. It is something angular adds declare function xit(expectation: string, assertion: () => void): void; declare function beforeEach(action: () => void): void;