提交 9aa89033 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

test(pullDownRefresh): 针对 ios 平台优化测试例

上级 d8df5881
const PAGE_PATH = "/pages/API/pull-down-refresh/pull-down-refresh"
const platformInfo = process.env.uniTestPlatformInfo.toLocaleLowerCase()
const isIos = platformInfo.startsWith('ios')
const isWeb = platformInfo.startsWith('web')
describe("payment", () => {
if (process.env.uniTestPlatformInfo.indexOf('web') > -1 || process.env.UNI_AUTOMATOR_APP_WEBVIEW === 'true') {
if (isWeb || process.env.UNI_AUTOMATOR_APP_WEBVIEW === 'true') {
it('web || app-webview', () => {
expect(1).toBe(1)
})
......@@ -16,6 +19,11 @@ describe("payment", () => {
pulldownRefreshTriggered: false
})
if (isIos) {
// 暂时通过点击关闭授权弹框,避免影响 swipe 测试
await program.tap({x: 100, y: 500})
}
await program.swipe({
startPoint: {
x: 100,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册