describe('<PercentInput />', () => {
    it('should mount a input with a value of 5%', () => {
        [5, '5', '5.', '5.00', '5.00003'].forEach(value => {
            render(<PercentInput value={value} />);
        });