From c0d81d137dcd90dd65423cc3807092eb534d37b4 Mon Sep 17 00:00:00 2001 From: Caleb Meredith Date: Thu, 8 Sep 2016 20:56:56 -0400 Subject: [PATCH] add test alias to Jest --- jest/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/jest/index.d.ts b/jest/index.d.ts index 98137eef82..1e978bfe92 100644 --- a/jest/index.d.ts +++ b/jest/index.d.ts @@ -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;