File size: 530 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | import getConciergeAppointmentTimespan from 'calypso/state/selectors/get-concierge-appointment-timespan';
describe( 'getConciergeAppointmentTimespan()', () => {
test( 'should default to null', () => {
expect( getConciergeAppointmentTimespan( {} ) ).toBeNull();
} );
test( 'should return the appointment timespan state value,', () => {
const appointmentTimespan = 987;
expect(
getConciergeAppointmentTimespan( {
concierge: {
appointmentTimespan,
},
} )
).toEqual( appointmentTimespan );
} );
} );
|