Merge pull request #11130 from calebmer/patch-1

add test alias to Jest
This commit is contained in:
Zhengbo Li
2016-09-09 10:47:45 -07:00
committed by GitHub
+1
View File
@@ -9,6 +9,7 @@ declare function afterEach(fn: jest.EmptyFunction): void;
declare function beforeEach(fn: jest.EmptyFunction): void;
declare function describe(name: string, fn: jest.EmptyFunction): void;
declare var it: jest.It;
declare var test: jest.It;
declare function pit(name: string, fn: jest.EmptyFunction): void;
declare function xdescribe(name: string, fn: jest.EmptyFunction): void;