mirror of
https://github.com/game-ci/unity-activate
synced 2026-01-29 14:33:26 +08:00
14 lines
307 B
JavaScript
14 lines
307 B
JavaScript
import Input from './input';
|
|
|
|
describe('Input', () => {
|
|
describe('getFromUser', () => {
|
|
it('does not throw', () => {
|
|
expect(() => Input.getFromUser()).not.toThrow();
|
|
});
|
|
|
|
it('returns an object', () => {
|
|
expect(typeof Input.getFromUser()).toStrictEqual('object');
|
|
});
|
|
});
|
|
});
|