提交 06934329 编写于 作者: shutao-dc's avatar shutao-dc

update grid-view.test.js list-view.test.js

上级 51a4cbb9
...@@ -2,7 +2,7 @@ const platformInfo = process.env.uniTestPlatformInfo.toLocaleLowerCase() ...@@ -2,7 +2,7 @@ const platformInfo = process.env.uniTestPlatformInfo.toLocaleLowerCase()
const isMP = platformInfo.startsWith('mp') const isMP = platformInfo.startsWith('mp')
describe('component-native-grid-view', () => { describe('component-native-grid-view', () => {
if (isMP) { if (isMP || platformInfo.indexOf('web') > -1) {
it('skip mp', () => { it('skip mp', () => {
expect(1).toBe(1) expect(1).toBe(1)
}) })
...@@ -63,9 +63,9 @@ describe('component-native-grid-view', () => { ...@@ -63,9 +63,9 @@ describe('component-native-grid-view', () => {
endPoint: { x: 100, y: 100 }, endPoint: { x: 100, y: 100 },
duration: 100 duration: 100
}) })
await page.waitFor(600) await page.waitFor(1200)
const endDetail = await page.data('scrollEndDetailTest') const endDetail = await page.data('scrollEndDetailTest')
// console.log('scrollEndDetailTest:', endDetail) console.log('scrollEndDetailTest:', endDetail)
expect(endDetail.deltaY).toBe(0) expect(endDetail.deltaY).toBe(0)
expect(endDetail.deltaX).toBe(0) expect(endDetail.deltaX).toBe(0)
expect(endDetail.scrollLeft).toBe(0) expect(endDetail.scrollLeft).toBe(0)
...@@ -81,7 +81,7 @@ describe('component-native-grid-view', () => { ...@@ -81,7 +81,7 @@ describe('component-native-grid-view', () => {
expect(value).toBe(true) expect(value).toBe(true)
}) })
// //检测下拉刷新 备注:iOS本地测试结果正确,但是自动化测试结果错误 //检测下拉刷新 备注:iOS本地测试结果正确,但是自动化测试结果错误
it('check_refresher', async () => { it('check_refresher', async () => {
await page.callMethod('confirm_scroll_top_input', 0) await page.callMethod('confirm_scroll_top_input', 0)
await page.setData({ await page.setData({
......
...@@ -90,9 +90,9 @@ describe('component-native-list-view', () => { ...@@ -90,9 +90,9 @@ describe('component-native-list-view', () => {
endPoint: { x: 100, y: 100 }, endPoint: { x: 100, y: 100 },
duration: 100 duration: 100
}) })
await page.waitFor(600) await page.waitFor(1600)
const endDetail = await page.data('scrollEndDetailTest') const endDetail = await page.data('scrollEndDetailTest')
// console.log('scrollEndDetailTest:', endDetail) console.log('scrollEndDetailTest:', endDetail)
expect(endDetail.deltaY).toBe(0) expect(endDetail.deltaY).toBe(0)
expect(endDetail.deltaX).toBe(0) expect(endDetail.deltaX).toBe(0)
expect(endDetail.scrollLeft).toBe(0) expect(endDetail.scrollLeft).toBe(0)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册