Add some more basic tests 🤷‍♂️

This commit is contained in:
Webber
2020-01-27 23:03:29 +01:00
committed by Webber Takken
parent fe2311ef4b
commit 4051832dc0
9 changed files with 217 additions and 1 deletions

View File

@@ -5,5 +5,9 @@ describe('Input', () => {
it('does not throw', () => {
expect(() => Input.getFromUser()).not.toThrow();
});
it('returns an object', () => {
expect(typeof Input.getFromUser()).toStrictEqual('object');
});
});
});