You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
805 B

const {scrollWheel, expectDate, init} = require('../../utils');
describe('Hour wheel', () => {
beforeAll(async () => {
await init();
await element(by.text('Advanced')).tap();
});
it('should have 24 hours', async () => {
await scroll3HoursAndExpect('2000-01-01 03:00:00');
await scroll3HoursAndExpect('2000-01-01 06:00:00');
await scroll3HoursAndExpect('2000-01-01 09:00:00');
await scroll3HoursAndExpect('2000-01-01 12:00:00');
await scroll3HoursAndExpect('2000-01-01 15:00:00');
await scroll3HoursAndExpect('2000-01-01 18:00:00');
await scroll3HoursAndExpect('2000-01-01 21:00:00');
await scroll3HoursAndExpect('2000-01-01 00:00:00');
});
const scroll3HoursAndExpect = async date => {
await scrollWheel(1, 3);
await expectDate(date);
};
});