Skip to content

Commit 661e016

Browse files
unknownunknown
authored andcommitted
Update for karma-jasmine 0.3.3+
1 parent ac3a1f0 commit 661e016

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

karma-jasmine/karma-jasmine-tests.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/// <reference path="karma-jasmine.d.ts" />
22

3-
ddescribe("A suite", () => {
4-
iit("contains spec with an expectation", () => {
3+
fdescribe("A suite", () => {
4+
fit("contains spec with an expectation", () => {
55
expect(true).toBe(true);
66
});
77
});

karma-jasmine/karma-jasmine.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
/// <reference path="../jasmine/jasmine.d.ts" />
77

8-
declare function ddescribe(description: string, specDefinitions: () => void): void;
9-
declare function iit(expectation: string, assertion: () => void): void;
8+
declare function fdescribe(description: string, specDefinitions: () => void): void;
9+
declare function fit(expectation: string, assertion: () => void): void;

0 commit comments

Comments
 (0)