Update for karma-jasmine 0.3.3+

This commit is contained in:
unknown
2015-06-25 10:17:24 +03:00
parent ac3a1f059f
commit 661e016896
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
/// <reference path="karma-jasmine.d.ts" />
ddescribe("A suite", () => {
iit("contains spec with an expectation", () => {
fdescribe("A suite", () => {
fit("contains spec with an expectation", () => {
expect(true).toBe(true);
});
});
+2 -2
View File
@@ -5,5 +5,5 @@
/// <reference path="../jasmine/jasmine.d.ts" />
declare function ddescribe(description: string, specDefinitions: () => void): void;
declare function iit(expectation: string, assertion: () => void): void;
declare function fdescribe(description: string, specDefinitions: () => void): void;
declare function fit(expectation: string, assertion: () => void): void;