Skip to content

Commit 00b1c2c

Browse files
committed
Merge pull request DefinitelyTyped#4735 from MattiLehtinen/master
Update for karma-jasmine 0.3.3+
2 parents d8bfbf6 + 661e016 commit 00b1c2c

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)