Files
unity-builder/src/model/input.test.js
2019-12-22 22:43:47 +01:00

10 lines
196 B
JavaScript

import Input from './input';
describe('Input', () => {
describe('getFromUser', () => {
it('does not throw', () => {
expect(() => Input.getFromUser()).not.toThrow();
});
});
});