mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-11 20:40:20 +00:00
Add karma-jasmine extra definitions
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
/// <reference path="karma-jasmine.d.ts" />
|
||||
|
||||
ddescribe("A suite", () => {
|
||||
iit("contains spec with an expectation", () => {
|
||||
expect(true).toBe(true);
|
||||
});
|
||||
});
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
// Type definitions for karma-jasmine plugin
|
||||
// Project: https://github.com/karma-runner/karma-jasmine
|
||||
// Definitions by: Michel Salib <michelsalib@hotmail.com>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
/// <reference path="../jasmine/jasmine.d.ts" />
|
||||
|
||||
declare function ddescribe(description: string, specDefinitions: () => void): void;
|
||||
declare function iit(expectation: string, assertion: () => void): void;
|
||||
Reference in New Issue
Block a user