Files
bendtherules bfb2b54634 Initial commit
Contains basic working logic to find unused repos and show in console
2018-05-31 17:48:44 +05:30

10 lines
233 B
TypeScript

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();
});