mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-01-31 13:39:07 +08:00
10 lines
196 B
JavaScript
10 lines
196 B
JavaScript
import Input from './input';
|
|
|
|
describe('Input', () => {
|
|
describe('getFromUser', () => {
|
|
it('does not throw', () => {
|
|
expect(() => Input.getFromUser()).not.toThrow();
|
|
});
|
|
});
|
|
});
|