Browse Source

fixing failaing tests + prettier format tests

master
Henning Hall 5 years ago
parent
commit
dedd03c501
8 changed files with 379 additions and 424 deletions
  1. +19
    -23
      examples/detox/e2e/tests/24h-mode/hourWheel.spec.js
  2. +44
    -46
      examples/detox/e2e/tests/24h-mode/mode.spec.js
  3. +96
    -111
      examples/detox/e2e/tests/maximumDate.spec.js
  4. +109
    -120
      examples/detox/e2e/tests/minimumDate.spec.js
  5. +25
    -27
      examples/detox/e2e/tests/minuteInterval.spec.js
  6. +4
    -6
      examples/detox/e2e/tests/mode.spec.js
  7. +38
    -42
      examples/detox/e2e/tests/scrollAround.spec.js
  8. +44
    -49
      examples/detox/e2e/tests/wheelOrder.spec.js

+ 19
- 23
examples/detox/e2e/tests/24h-mode/hourWheel.spec.js View File

@ -1,28 +1,24 @@
const { scrollWheel, expectDate } = require("../../utils")
const { scrollWheel, expectDate } = require('../../utils')
describe('Hour wheel', () => {
before(async () => {
await device.reloadReactNative()
await element(by.text('Advanced')).tap()
})
before(async () => {
await device.reloadReactNative()
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)
}
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)
}
})

+ 44
- 46
examples/detox/e2e/tests/24h-mode/mode.spec.js View File

@ -1,49 +1,47 @@
const { setMode } = require("../../utils";)
const { setMode } = require('../../utils';)
describe('Modes - 24h', () => {
before(async () => {
await device.reloadReactNative()
await element(by.text('Advanced')).tap()
})
it('datetime', async () => {
await setMode("datetime")
await expect(element(by.id('day'))).toBeVisible()
await expect(element(by.id('minutes'))).toBeVisible()
await expect(element(by.id('hour'))).toBeVisible()
await expect(element(by.id('ampm'))).toNotExist()
await expect(element(by.id('month'))).toNotExist()
await expect(element(by.id('date'))).toNotExist()
await expect(element(by.id('year'))).toNotExist()
})
it('date', async () => {
await setMode("date")
await expect(element(by.id('month'))).toBeVisible()
await expect(element(by.id('date'))).toBeVisible()
await expect(element(by.id('year'))).toBeVisible()
await expect(element(by.id('day'))).toNotExist()
await expect(element(by.id('minutes'))).toNotExist()
await expect(element(by.id('hour'))).toNotExist()
await expect(element(by.id('ampm'))).toNotExist()
})
it('time', async () => {
await setMode("time")
await expect(element(by.id('minutes'))).toBeVisible()
await expect(element(by.id('hour'))).toBeVisible()
await expect(element(by.id('ampm'))).toNotExist()
await expect(element(by.id('day'))).toNotExist()
await expect(element(by.id('month'))).toNotExist()
await expect(element(by.id('date'))).toNotExist()
await expect(element(by.id('year'))).toNotExist()
})
before(async () => {
await device.reloadReactNative()
await element(by.text('Advanced')).tap()
})
it('datetime', async () => {
await setMode('datetime')
await expect(element(by.id('day'))).toBeVisible()
await expect(element(by.id('minutes'))).toBeVisible()
await expect(element(by.id('hour'))).toBeVisible()
await expect(element(by.id('ampm'))).toNotExist()
await expect(element(by.id('month'))).toNotExist()
await expect(element(by.id('date'))).toNotExist()
await expect(element(by.id('year'))).toNotExist()
})
it('date', async () => {
await setMode('date')
await expect(element(by.id('month'))).toBeVisible()
await expect(element(by.id('date'))).toBeVisible()
await expect(element(by.id('year'))).toBeVisible()
await expect(element(by.id('day'))).toNotExist()
await expect(element(by.id('minutes'))).toNotExist()
await expect(element(by.id('hour'))).toNotExist()
await expect(element(by.id('ampm'))).toNotExist()
})
it('time', async () => {
await setMode('time')
await expect(element(by.id('minutes'))).toBeVisible()
await expect(element(by.id('hour'))).toBeVisible()
await expect(element(by.id('ampm'))).toNotExist()
await expect(element(by.id('day'))).toNotExist()
await expect(element(by.id('month'))).toNotExist()
await expect(element(by.id('date'))).toNotExist()
await expect(element(by.id('year'))).toNotExist()
})
})

+ 96
- 111
examples/detox/e2e/tests/maximumDate.spec.js View File

@ -1,131 +1,116 @@
const { scrollWheel, expectDate, setMaximumDate, setMode } = require("../utils";)
const { scrollWheel, expectDate, setMaximumDate, setMode } = require('../utils';)
const initialDate = new Date(2000, 0, 1, 0, 0);
const secondOfJanuary = new Date(2000, 0, 2, 0, 0);
const secondOfJanuary2001 = new Date(2001, 0, 2, 0, 0);
const initialDate = new Date(2000, 0, 1, 0, 0)
const secondOfJanuary = new Date(2000, 0, 2, 0, 0)
const secondOfJanuary2001 = new Date(2001, 0, 2, 0, 0)
describe('Maximum date', () => {
before(async () => {
await device.reloadReactNative()
await element(by.text('Advanced')).tap()
})
describe('cannot pass max date - datetime mode', () => {
before(async () => {
await device.reloadReactNative()
await element(by.text('Advanced')).tap()
await setMode('datetime')
await setMaximumDate(initialDate)
})
describe('cannot pass max date - datetime mode', () => {
before(async () => {
await setMode("datetime")
await setMaximumDate(initialDate)
})
it('day wheel', async () => {
await scrollWheel(0, 2)
await expectDate("2000-01-01 00:00:00")
})
it('hour wheel', async () => {
await scrollWheel(1, 1)
await expectDate("2000-01-01 00:00:00")
})
it('minute wheel', async () => {
await scrollWheel(2, 1)
await expectDate("2000-01-01 00:00:00")
})
it('day wheel', async () => {
await scrollWheel(0, 2)
await expectDate('2000-01-01 00:00:00')
})
describe('cannot pass max date - date mode', () => {
before(async () => {
await setMode("date")
await setMaximumDate(initialDate)
})
it('month wheel', async () => {
await scrollWheel(0, 1)
await expectDate("2000-01-01 00:00:00")
})
it('date wheel', async () => {
await scrollWheel(1, 1)
await expectDate("2000-01-01 00:00:00")
})
it('year wheel', async () => {
await scrollWheel(2, 1)
await expectDate("2000-01-01 00:00:00")
})
it('hour wheel', async () => {
await scrollWheel(1, 1)
await expectDate('2000-01-01 00:00:00')
})
it('minute wheel', async () => {
await scrollWheel(2, 1)
await expectDate('2000-01-01 00:00:00')
})
})
describe('overshooting max date', () => {
before(async () => {
await setMaximumDate(secondOfJanuary)
})
it('day wheel should not be possible to overshoot since it is not wrapping (no invalid dates exists)', async () => {
await setMode("datetime")
await scrollWheel(0, 1)
await expectDate("2000-01-02 00:00:00")
await scrollWheel(0, 1)
await expectDate("2000-01-02 00:00:00")
})
describe('date mode', () => {
before(async () => {
await setMode("date")
await setMaximumDate(secondOfJanuary)
})
it('overshooting month wheel should set all other wheels to maximum possible date', async () => {
await scrollWheel(0, 1)
await expectDate("2000-01-02 00:00:00")
})
it('overshooting date wheel should reverse to highest possible date', async () => {
await scrollWheel(1, 5)
await expectDate("2000-01-02 00:00:00")
})
it('overshooting year wheel should set all other wheels to maximum possible date', async () => {
await setMaximumDate(secondOfJanuary2001)
await scrollWheel(0, 1) // set month to feb
await scrollWheel(2, 1)
await expectDate("2001-01-02 00:00:00")
})
})
describe('time mode', () => {
before(async () => {
await setMode("time")
await setMaximumDate(initialDate)
})
it('overshooting hour wheel should reverse to highest possible time', async () => {
await scrollWheel(0, 5)
await expectDate("2000-01-01 00:00:00")
})
describe('cannot pass max date - date mode', () => {
before(async () => {
await setMode('date')
await setMaximumDate(initialDate)
})
it('overshooting minute wheel should reverse to highest possible time', async () => {
await scrollWheel(1, 5)
await expectDate("2000-01-01 00:00:00";)
})
it('month wheel', async () => {
await scrollWheel(0, 1)
await expectDate('2000-01-01 00:00:00')
})
it('overshooting am/pm wheel should reverse to highest possible time', async () => {
await scrollWheel(2, 1)
await expectDate("2000-01-01 00:00:00";)
})
it('date wheel', async () => {
await scrollWheel(1, 1)
await expectDate('2000-01-01 00:00:00')
})
})
it('year wheel', async () => {
await scrollWheel(2, 1)
await expectDate('2000-01-01 00:00:00')
})
})
describe('overshooting max date', () => {
before(async () => {
await setMaximumDate(secondOfJanuary)
})
it('day wheel should not be possible to overshoot since it is not wrapping (no invalid dates exists)', async () => {
await setMode('datetime')
await scrollWheel(0, 1)
await expectDate('2000-01-02 00:00:00')
await scrollWheel(0, 1)
await expectDate('2000-01-02 00:00:00')
})
describe('date mode', () => {
before(async () => {
await setMode('date')
await setMaximumDate(secondOfJanuary)
})
it('overshooting month wheel should set all other wheels to maximum possible date', async () => {
await scrollWheel(0, 1)
await expectDate('2000-01-02 00:00:00')
})
it('overshooting date wheel should reverse to highest possible date', async () => {
await scrollWheel(1, 5)
await expectDate('2000-01-02 00:00:00')
})
it('overshooting year wheel should set all other wheels to maximum possible date', async () => {
await setMaximumDate(secondOfJanuary2001)
await scrollWheel(0, 1) // set month to feb
await scrollWheel(2, 1)
await expectDate('2001-01-02 00:00:00')
})
})
})
describe('time mode', () => {
before(async () => {
await setMode('time')
await setMaximumDate(initialDate)
})
it('overshooting hour wheel should reverse to highest possible time', async () => {
await scrollWheel(0, 5)
await expectDate('2000-01-01 00:00:00')
})
it('overshooting minute wheel should reverse to highest possible time', async () => {
await scrollWheel(1, 5)
await expectDate('2000-01-01 00:00:00')
})
it('overshooting am/pm wheel should reverse to highest possible time', async () => {
await scrollWheel(2, 1)
await expectDate('2000-01-01 00:00:00')
})
})
})
})

+ 109
- 120
examples/detox/e2e/tests/minimumDate.spec.js View File

@ -1,134 +1,123 @@
const { setDate, scrollWheel, expectDate, setMinimumDate, setMode } = require("../utils")
const {
setDate,
scrollWheel,
expectDate,
setMinimumDate,
setMode,
} = require('../utils')
const oneMinuteBeforeJanuary2 = new Date(2000, 0, 1, 23, 59, 0);
const oneMinuteBeforeJanuary2 = new Date(2000, 0, 1, 23, 59, 0)
describe('Minimum date', () => {
before(async () => {
await device.reloadReactNative()
await element(by.text('Advanced')).tap()
before(async () => {
await device.reloadReactNative()
await element(by.text('Advanced')).tap()
})
beforeEach(async () => {
await setDate(oneMinuteBeforeJanuary2.toISOString())
})
describe('cannot pass min date - mode: ', () => {
describe('datetime', () => {
before(async () => {
await setMode('datetime')
await setMinimumDate(oneMinuteBeforeJanuary2)
})
it('day wheel', async () => {
await scrollWheel(0, -2)
await expectDate('2000-01-01 23:59:00')
})
it('hour wheel', async () => {
await scrollWheel(1, -1)
await expectDate('2000-01-01 23:59:00')
})
it('minute wheel', async () => {
await scrollWheel(2, -1)
await expectDate('2000-01-01 23:59:00')
})
})
beforeEach(async () => {
await setDate(oneMinuteBeforeJanuary2.toISOString())
describe('date', () => {
before(async () => {
await setMode('date')
await setMinimumDate(oneMinuteBeforeJanuary2)
})
it('month wheel', async () => {
await scrollWheel(0, -1)
await expectDate('2000-01-06 00:00:00')
})
it('date wheel', async () => {
await scrollWheel(1, -1)
await expectDate('2000-01-06 00:00:00')
})
it('year wheel', async () => {
await scrollWheel(2, -1)
await expectDate('2000-01-01 23:59:00')
})
})
})
describe('cannot pass min date - mode: ', () => {
describe('datetime', () => {
before(async () => {
await setMode("datetime")
await setMinimumDate(oneMinuteBeforeJanuary2)
})
it('day wheel', async () => {
await scrollWheel(0, -2)
await expectDate("2000-01-01 23:59:00")
})
it('hour wheel', async () => {
await scrollWheel(1, -1)
await expectDate("2000-01-01 23:59:00")
})
it('minute wheel', async () => {
await scrollWheel(2, -1)
await expectDate("2000-01-01 23:59:00")
})
})
describe('date', () => {
before(async () => {
await setMode("date")
await setMinimumDate(oneMinuteBeforeJanuary2)
})
it('month wheel', async () => {
await scrollWheel(0, -1)
await expectDate("2000-01-01 23:59:00")
})
it('date wheel', async () => {
await scrollWheel(1, -1)
await expectDate("2000-01-01 23:59:00")
})
it('year wheel', async () => {
await scrollWheel(2, -1)
await expectDate("2000-01-01 23:59:00")
})
})
describe('overshooting min date - mode:', () => {
before(async () => {
await setMinimumDate(oneMinuteBeforeJanuary2)
})
describe('datetime', () => {
before(async () => {
await setMode('datetime')
})
it('day wheel should not be possible to overshoot since it is not wrapping (no invalid dates exists)', async () => {
await scrollWheel(0, -1)
await expectDate('2000-01-01 23:59:00')
await scrollWheel(0, -1)
await expectDate('2000-01-01 23:59:00')
})
})
describe('overshooting min date - mode:', () => {
before(async () => {
await setMinimumDate(oneMinuteBeforeJanuary2)
})
describe('datetime', () => {
before(async () => {
await setMode("datetime")
})
it('day wheel should not be possible to overshoot since it is not wrapping (no invalid dates exists)', async () => {
await scrollWheel(0, -1)
await expectDate("2000-01-01 23:59:00")
await scrollWheel(0, -1)
await expectDate("2000-01-01 23:59:00")
})
})
describe('date', () => {
before(async () => {
await setMode("date")
})
it('overshooting month wheel should set all other wheels to minimum possible date', async () => {
await scrollWheel(0, -1)
await expectDate("2000-01-01 23:59:00")
})
it('overshooting date wheel should reverse to minimum possible date', async () => {
await scrollWheel(1, -5)
await expectDate("2000-01-01 23:59:00")
})
})
describe('time mode', () => {
before(async () => {
await setMode("time")
await setMinimumDate(oneMinuteBeforeJanuary2)
})
it('overshooting hour wheel should reverse to minimum possible time', async () => {
await scrollWheel(0, -5)
await expectDate("2000-01-01 23:59:00")
})
it('overshooting minute wheel should reverse to minimum possible time', async () => {
await scrollWheel(1, -5)
await expectDate("2000-01-01 23:59:00")
})
it('overshooting am/pm wheel should reverse to minimum possible time', async () => {
await scrollWheel(2, -1)
await expectDate("2000-01-01 23:59:00")
})
})
describe('date', () => {
before(async () => {
await setMode('date')
})
it('overshooting month wheel should set all other wheels to maximum possible date', async () => {
await scrollWheel(0, -1)
await expectDate('2000-01-06 00:00:00')
})
it('overshooting date wheel should reverse to maximum possible date', async () => {
await scrollWheel(1, -5)
await expectDate('2000-01-06 00:00:00')
})
})
})
describe('time mode', () => {
before(async () => {
await setMode('time')
await setMinimumDate(oneMinuteBeforeJanuary2)
})
it('overshooting hour wheel should reverse to minimum possible time', async () => {
await scrollWheel(0, -5)
await expectDate('2000-01-01 23:59:00')
})
it('overshooting minute wheel should reverse to minimum possible time', async () => {
await scrollWheel(1, -5)
await expectDate('2000-01-01 23:59:00')
})
it('overshooting am/pm wheel should reverse to minimum possible time', async () => {
await scrollWheel(2, -1)
await expectDate('2000-01-01 23:59:00')
})
})
})
})

+ 25
- 27
examples/detox/e2e/tests/minuteInterval.spec.js View File

@ -1,34 +1,32 @@
const { scrollWheel, expectDate, setMinuteInterval } = require("../utils";)
const { scrollWheel, expectDate, setMinuteInterval } = require('../utils';)
const scrollMinuteWheel = () => scrollWheel(2, 1)
describe('Minute interval', () => {
before(async () => {
await device.reloadReactNative()
await element(by.text('Advanced')).tap()
})
before(async () => {
await device.reloadReactNative()
await element(by.text('Advanced')).tap()
})
it('1 minute (default)', async () => {
await setMinuteInterval(1)
await scrollMinuteWheel()
await expectDate('2000-01-01 00:01:00')
})
it('1 minute (default)', async () => {
await setMinuteInterval(1)
await scrollMinuteWheel()
await expectDate("2000-01-01 00:01:00";)
})
it('5 minutes', async () => {
await setMinuteInterval(5)
await scrollMinuteWheel()
await expectDate('2000-01-01 00:05:00';)
})
it('5 minutes', async () => {
await setMinuteInterval(5)
await scrollMinuteWheel()
await expectDate("2000-01-01 00:05:00")
})
it('15 minutes', async () => {
await setMinuteInterval(15)
await scrollMinuteWheel()
await expectDate("2000-01-01 00:15:00")
await scrollMinuteWheel()
await expectDate("2000-01-01 00:30:00")
await scrollMinuteWheel()
await expectDate("2000-01-01 00:45:00")
})
})
it('15 minutes', async () => {
await setMinuteInterval(15)
await scrollMinuteWheel()
await expectDate('2000-01-01 00:15:00')
await scrollMinuteWheel()
await expectDate('2000-01-01 00:30:00')
await scrollMinuteWheel()
await expectDate('2000-01-01 00:45:00')
})
})

+ 4
- 6
examples/detox/e2e/tests/mode.spec.js View File

@ -1,14 +1,13 @@
const { setMode } = require("../utils";)
const { setMode } = require('../utils';)
describe('Modes', () => {
before(async () => {
await device.reloadReactNative()
await element(by.text('Advanced')).tap()
})
it('datetime', async () => {
await setMode("datetime";)
await setMode('datetime';)
await expect(element(by.id('day'))).toBeVisible()
await expect(element(by.id('minutes'))).toBeVisible()
@ -21,7 +20,7 @@ describe('Modes', () => {
})
it('date', async () => {
await setMode("date";)
await setMode('date';)
await expect(element(by.id('month'))).toBeVisible()
await expect(element(by.id('date'))).toBeVisible()
@ -34,7 +33,7 @@ describe('Modes', () => {
})
it('time', async () => {
await setMode("time";)
await setMode('time';)
await expect(element(by.id('minutes'))).toBeVisible()
await expect(element(by.id('hour'))).toBeVisible()
@ -45,5 +44,4 @@ describe('Modes', () => {
await expect(element(by.id('date'))).toNotExist()
await expect(element(by.id('year'))).toNotExist()
})
})

+ 38
- 42
examples/detox/e2e/tests/scrollAround.spec.js View File

@ -1,45 +1,41 @@
const { scrollWheel, expectDate } = require("../utils")
const { scrollWheel, expectDate } = require('../utils')
describe('Scroll around', () => {
before(async () => {
await device.reloadReactNative()
await element(by.text('Advanced')).tap()
})
it.skip('Hour wheel should scroll all way around and switch AM/PM when passing 12', 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 scrollWheel(1, 2)
await expectDate("2000-01-01 11:00:00")
await scrollWheel(1, 2)
await expectDate("2000-01-01 13:00:00")
await scroll3HoursAndExpect("2000-01-01 16:00:00")
await scroll3HoursAndExpect("2000-01-01 19:00:00")
await scroll3HoursAndExpect("2000-01-01 22:00:00")
await scroll3HoursAndExpect("2000-01-01 01:00:00")
})
it('Minute wheel should be possible to scroll all way around', async () => {
await scrollWheel(2, 55)
await expectDate("2000-01-01 00:55:00")
await scrollWheel(2, 10)
await expectDate("2000-01-01 00:05:00")
})
it('Day wheel should change year when passing new year', async () => {
await scrollWheel(0, -1)
await expectDate("1999-12-31 00:00:00")
await scrollWheel(0, 1)
await expectDate("2000-01-01 00:00:00")
})
const scroll3HoursAndExpect = async (date) => {
await scrollWheel(1, 3)
await expectDate(date)
}
before(async () => {
await device.reloadReactNative()
await element(by.text('Advanced')).tap()
})
it.skip('Hour wheel should scroll all way around and switch AM/PM when passing 12', 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 scrollWheel(1, 2)
await expectDate('2000-01-01 11:00:00')
await scrollWheel(1, 2)
await expectDate('2000-01-01 13:00:00')
await scroll3HoursAndExpect('2000-01-01 16:00:00')
await scroll3HoursAndExpect('2000-01-01 19:00:00')
await scroll3HoursAndExpect('2000-01-01 22:00:00')
await scroll3HoursAndExpect('2000-01-01 01:00:00')
})
it('Minute wheel should be possible to scroll all way around', async () => {
await scrollWheel(2, 55)
await expectDate('2000-01-01 00:55:00')
await scrollWheel(2, 10)
await expectDate('2000-01-01 00:05:00')
})
it('Day wheel should change year when passing new year', async () => {
await scrollWheel(0, -1)
await expectDate('1999-12-31 00:00:00')
await scrollWheel(0, 1)
await expectDate('2000-01-01 00:00:00')
})
const scroll3HoursAndExpect = async date => {
await scrollWheel(1, 3)
await expectDate(date)
}
})

+ 44
- 49
examples/detox/e2e/tests/wheelOrder.spec.js View File

@ -1,95 +1,90 @@
const { scrollWheelWithIndexAndExpectDate, setMode, setLocale, setMaximumDate } = require("../utils")
const {
scrollWheelWithIndexAndExpectDate,
setMode,
setLocale,
setMaximumDate,
} = require('../utils')
describe('Wheel order', () => {
before(async () => {
await device.reloadReactNative()
await element(by.text('Advanced')).tap()
await setMaximumDate("undefined";)
await setMaximumDate('undefined';)
})
describe('datetime', () => {
before(async () => {
await setMode("datetime";)
await setMode('datetime';)
})
it('US', async () => {
await setLocale("en-US";)
await scrollWheelWithIndexAndExpectDate(0, "2000-01-02 00:00:00";)
await scrollWheelWithIndexAndExpectDate(1, "2000-01-01 01:00:00";)
await scrollWheelWithIndexAndExpectDate(2, "2000-01-01 00:01:00";)
await scrollWheelWithIndexAndExpectDate(3, "2000-01-01 12:00:00";)
await setLocale('en-US';)
await scrollWheelWithIndexAndExpectDate(0, '2000-01-02 00:00:00';)
await scrollWheelWithIndexAndExpectDate(1, '2000-01-01 01:00:00';)
await scrollWheelWithIndexAndExpectDate(2, '2000-01-01 00:01:00';)
await scrollWheelWithIndexAndExpectDate(3, '2000-01-01 12:00:00';)
})
it('Korean', async () => {
await setLocale("ko-KR";)
await scrollWheelWithIndexAndExpectDate(0, "2000-01-02 00:00:00";)
await scrollWheelWithIndexAndExpectDate(1, "2000-01-01 12:00:00";)
await scrollWheelWithIndexAndExpectDate(2, "2000-01-01 01:00:00";)
await scrollWheelWithIndexAndExpectDate(3, "2000-01-01 00:01:00";)
await setLocale('ko-KR';)
await scrollWheelWithIndexAndExpectDate(0, '2000-01-02 00:00:00';)
await scrollWheelWithIndexAndExpectDate(1, '2000-01-01 12:00:00';)
await scrollWheelWithIndexAndExpectDate(2, '2000-01-01 01:00:00';)
await scrollWheelWithIndexAndExpectDate(3, '2000-01-01 00:01:00';)
})
})
describe('date', () => {
before(async () => {
await setMode("date";)
await setMode('date';)
})
it('US', async () => {
await setLocale("en-US";)
await scrollWheelWithIndexAndExpectDate(0, "2000-02-01 00:00:00";)
await scrollWheelWithIndexAndExpectDate(1, "2000-01-02 00:00:00";)
await scrollWheelWithIndexAndExpectDate(2, "2001-01-01 00:00:00";)
await setLocale('en-US';)
await scrollWheelWithIndexAndExpectDate(0, '2000-02-01 00:00:00';)
await scrollWheelWithIndexAndExpectDate(1, '2000-01-02 00:00:00';)
await scrollWheelWithIndexAndExpectDate(2, '2001-01-01 00:00:00';)
})
it('UK', async () => {
await setLocale("en-GB";)
await scrollWheelWithIndexAndExpectDate(0, "2000-01-02 00:00:00";)
await scrollWheelWithIndexAndExpectDate(1, "2000-02-01 00:00:00";)
await scrollWheelWithIndexAndExpectDate(2, "2001-01-01 00:00:00";)
await setLocale('en-GB';)
await scrollWheelWithIndexAndExpectDate(0, '2000-01-02 00:00:00';)
await scrollWheelWithIndexAndExpectDate(1, '2000-02-01 00:00:00';)
await scrollWheelWithIndexAndExpectDate(2, '2001-01-01 00:00:00';)
})
it('Korean', async () => {
await setLocale("ko-KR";)
await scrollWheelWithIndexAndExpectDate(0, "2001-01-01 00:00:00";)
await scrollWheelWithIndexAndExpectDate(1, "2000-02-01 00:00:00";)
await scrollWheelWithIndexAndExpectDate(2, "2000-01-02 00:00:00";)
await setLocale('ko-KR';)
await scrollWheelWithIndexAndExpectDate(0, '2001-01-01 00:00:00';)
await scrollWheelWithIndexAndExpectDate(1, '2000-02-01 00:00:00';)
await scrollWheelWithIndexAndExpectDate(2, '2000-01-02 00:00:00';)
})
})
describe('time', () => {
before(async () => {
await setMode("time";)
await setMode('time';)
})
it('US', async () => {
await setLocale("en-US";)
await scrollWheelWithIndexAndExpectDate(0, "2000-01-01 01:00:00";)
await scrollWheelWithIndexAndExpectDate(1, "2000-01-01 00:01:00";)
await scrollWheelWithIndexAndExpectDate(2, "2000-01-01 12:00:00";)
await setLocale('en-US';)
await scrollWheelWithIndexAndExpectDate(0, '2000-01-01 01:00:00';)
await scrollWheelWithIndexAndExpectDate(1, '2000-01-01 00:01:00';)
await scrollWheelWithIndexAndExpectDate(2, '2000-01-01 12:00:00';)
})
it('UK', async () => {
await setLocale("en-GB";)
await scrollWheelWithIndexAndExpectDate(0, "2000-01-01 01:00:00";)
await scrollWheelWithIndexAndExpectDate(1, "2000-01-01 00:01:00";)
await scrollWheelWithIndexAndExpectDate(2, "2000-01-01 12:00:00";)
await setLocale('en-GB';)
await scrollWheelWithIndexAndExpectDate(0, '2000-01-01 01:00:00';)
await scrollWheelWithIndexAndExpectDate(1, '2000-01-01 00:01:00';)
await scrollWheelWithIndexAndExpectDate(2, '2000-01-01 12:00:00';)
})
it('Korean', async () => {
await setLocale("ko-KR";)
await scrollWheelWithIndexAndExpectDate(0, "2000-01-01 12:00:00";)
await scrollWheelWithIndexAndExpectDate(1, "2000-01-01 01:00:00";)
await scrollWheelWithIndexAndExpectDate(2, "2000-01-01 00:01:00";)
await setLocale('ko-KR';)
await scrollWheelWithIndexAndExpectDate(0, '2000-01-01 12:00:00';)
await scrollWheelWithIndexAndExpectDate(1, '2000-01-01 01:00:00';)
await scrollWheelWithIndexAndExpectDate(2, '2000-01-01 00:01:00';)
})
})
})

Loading…
Cancel
Save