提交 91ef0373 编写于 作者: 雪洛's avatar 雪洛

fix: 测试例等待时间过短,动画可能尚未完成

上级 7ba0173b
......@@ -10,10 +10,9 @@ describe('page-scroll-to', () => {
const btnScrollTo = await page.$('.btn-scrollTo')
await btnScrollTo.tap()
await page.waitFor(300)
const scrollTop = await page.scrollTop()
await page.waitFor(600)
const scrollTop = await page.scrollTop()
// 设备精度问题,允许上下浮动 1px
expect(scrollTop > 99 && scrollTop < 101).toBe(true)
})
......@@ -22,7 +21,7 @@ describe('page-scroll-to', () => {
const scrollToElement = await page.$('.custom-element')
await btnScrollTo.tap()
await page.waitFor(300)
await page.waitFor(600)
const offset = await scrollToElement.offset()
// android 6 分辨率为 720*1280,需要调整期望数值
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册