We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d8bfbf6 + 661e016 commit 00b1c2cCopy full SHA for 00b1c2c
karma-jasmine/karma-jasmine-tests.ts
@@ -1,7 +1,7 @@
1
/// <reference path="karma-jasmine.d.ts" />
2
3
-ddescribe("A suite", () => {
4
- iit("contains spec with an expectation", () => {
+fdescribe("A suite", () => {
+ fit("contains spec with an expectation", () => {
5
expect(true).toBe(true);
6
});
7
karma-jasmine/karma-jasmine.d.ts
@@ -5,5 +5,5 @@
/// <reference path="../jasmine/jasmine.d.ts" />
8
-declare function ddescribe(description: string, specDefinitions: () => void): void;
9
-declare function iit(expectation: string, assertion: () => void): void;
+declare function fdescribe(description: string, specDefinitions: () => void): void;
+declare function fit(expectation: string, assertion: () => void): void;
0 commit comments