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();
|
|
});
|
|
});
|
|
});
|