From 43e0a7923e6df51395e337cca4227d7a7a2ff7c0 Mon Sep 17 00:00:00 2001 From: Wayne Maurer Date: Wed, 31 Dec 2014 22:38:38 +0100 Subject: [PATCH] Update jasmine.d.ts Focused specs have been in jasmine-core since version 2.1 --- jasmine/jasmine.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jasmine/jasmine.d.ts b/jasmine/jasmine.d.ts index 368b431d4..d7a2e0213 100644 --- a/jasmine/jasmine.d.ts +++ b/jasmine/jasmine.d.ts @@ -7,13 +7,13 @@ // For ddescribe / iit use : https://github.com/borisyankov/DefinitelyTyped/blob/master/karma-jasmine/karma-jasmine.d.ts declare function describe(description: string, specDefinitions: () => void): void; -// declare function ddescribe(description: string, specDefinitions: () => void): void; Not a part of jasmine. Angular team adds these +declare function fdescribe(description: string, specDefinitions: () => void): void; declare function xdescribe(description: string, specDefinitions: () => void): void; declare function it(expectation: string, assertion?: () => void): void; declare function it(expectation: string, assertion?: (done: () => void) => void): void; -// declare function iit(expectation: string, assertion?: () => void): void; Not a part of jasmine. Angular team adds these -// declare function iit(expectation: string, assertion?: (done: () => void) => void): void; Not a part of jasmine. Angular team adds these +declare function fit(expectation: string, assertion?: () => void): void; +declare function fit(expectation: string, assertion?: (done: () => void) => void): void; declare function xit(expectation: string, assertion?: () => void): void; declare function xit(expectation: string, assertion?: (done: () => void) => void): void;