提交 0b0897cf 编写于 作者: 辛宝Otto's avatar 辛宝Otto 🥊

fix(picker-view): 调整其他测试用例

上级 7f361455
...@@ -31,7 +31,7 @@ describe('PickerView.uvue', () => { ...@@ -31,7 +31,7 @@ describe('PickerView.uvue', () => {
const newValue1 = await pickerViewEl.property('value') const newValue1 = await pickerViewEl.property('value')
// TODO // TODO
expect(newValue1.toString()).toEqual('0,0,0') expect(newValue1.toString()).toEqual('0,1,30')
if (process.env.UNI_PLATFORM === 'app-android') { if (process.env.UNI_PLATFORM === 'app-android') {
expect(await page.data('result')).toEqual([0, 0, 0]) expect(await page.data('result')).toEqual([0, 0, 0])
} }
...@@ -115,15 +115,15 @@ describe('PickerView.uvue', () => { ...@@ -115,15 +115,15 @@ describe('PickerView.uvue', () => {
await page.waitFor(500) await page.waitFor(500)
page = await program.navigateTo(PAGE_PATH) page = await program.navigateTo(PAGE_PATH)
await page.waitFor(500) await page.waitFor(500)
const date = new Date()
const { const {
year, year,
month, month,
day day
} = await page.data() } = await page.data()
expect(year).toEqual(date.getFullYear()) expect(year).toEqual(2018)
expect(month).toEqual(date.getMonth() + 1) expect(month).toEqual(1)
expect(day).toEqual(date.getDate()) expect(day).toEqual(12)
}) })
it('trigger UniPickerViewChangeEvent', async () => { it('trigger UniPickerViewChangeEvent', async () => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册