nexxtway/react-rainbow

View on GitHub
src/components/TimePicker/helpers/__test__/getPrevHour.spec.js

Summary

Maintainability
A
3 hrs
Test Coverage
import getPrevHour from '../getPrevHour';

describe('getPrevHour', () => {
    it('should return the string "12" when any value is passed', () => {
        expect(getPrevHour()).toBe('12');
    });
    it('should return the string "23" when no value is passed and hour24 is true', () => {
        expect(getPrevHour(undefined, true)).toBe('23');
    });
    it('should return the string "12" when value passed converted to Number is equal to 0 or 1', () => {
        const values = ['0', 0, '1', 1];
        values.forEach(value => expect(getPrevHour(value)).toBe('12'));
    });
    it('should return the string "23" when value passed converted to Number is equal to 0 and hour24 is true', () => {
        const values = ['0', 0];
        values.forEach(value => expect(getPrevHour(value, true)).toBe('23'));
    });
    it('should return the string of the value passed decreased by 1 when value passed converted to Number is different to 0 or 1', () => {
        const values = ['03', '11', '22', '30', '44', 9, 21, 12, 38, 58];
        const expects = ['2', '10', '21', '29', '43', '8', '20', '11', '37', '57'];
        values.forEach((value, index) => expect(getPrevHour(value)).toBe(expects[index]));
    });
    it('should return the string of the value passed decreased by 1 when value passed converted to Number is different to 0 and hour24 is true', () => {
        const values = ['1', '03', '11', '22', '30', '44', 9, 21, 12, 38, 58];
        const expects = ['0', '2', '10', '21', '29', '43', '8', '20', '11', '37', '57'];
        values.forEach((value, index) => expect(getPrevHour(value, true)).toBe(expects[index]));
    });
});