mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-22 11:57:33 +08:00
Add missing ddescribe and iit definitions
This commit is contained in:
2
jasmine/legacy/jasmine-1.3.d.ts
vendored
2
jasmine/legacy/jasmine-1.3.d.ts
vendored
@@ -5,10 +5,12 @@
|
||||
|
||||
|
||||
declare function describe(description: string, specDefinitions: () => void): void;
|
||||
declare function ddescribe(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: (err?: any) => void) => void): void;
|
||||
declare function iit(expectation: string, assertion: () => void): void;
|
||||
declare function xit(expectation: string, assertion: () => void): void;
|
||||
|
||||
declare function beforeEach(action: () => void): void;
|
||||
|
||||
Reference in New Issue
Block a user