unity-builder/src/model/input.test.js

10 lines
196 B
JavaScript

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