Initial structure

Generated with node-typescript-webpack
This commit is contained in:
Abhas
2018-06-21 15:06:07 +05:30
commit a7007048ab
20 changed files with 6410 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
const mockWind = jest.fn<Window>();
const anyGlobal = global as any;
anyGlobal.window = new mockWind();
import * as index from '../src/index';
test('Should have Greeter available', () => {
expect(index.Greeter).toBeTruthy();
});