9433cfb9创建于 2025年12月31日历史提交
const platformInfo = process.env.uniTestPlatformInfo.toLocaleLowerCase()
const isMP = platformInfo.startsWith('mp')
const isWeb = platformInfo.startsWith('web')
const isHarmony = platformInfo.startsWith('harmony')
const isIOS = platformInfo.startsWith('ios')

describe('long-waterflow-nested', () => {
  if (isWeb || isMP || isHarmony || isIOS || process.env.UNI_TEST_DEVICES_DIRECTION == 'landscape') {
    it('dummyTest', async () => {
      expect(1).toBe(1)
    })
    return
  }

  let page
  beforeAll(async () => {
    //打开list-view测试页
    page = await program.reLaunch('/pages/template/long-waterflow-nested/long-waterflow-nested')
    await page.waitFor(600)
  })

  //测试验证Waterflow下拉刷新是否闪退问题
  it('check_refresherabort', async () => {
    //部分安卓设备需要延迟一段时间swipe才生效 此处暂时延迟1秒
    await page.waitFor(1000);
    // 仅App端支持手势下拉刷新
    await program.swipe({
      startPoint: {x: 100,y: 300},
      endPoint: {x: 100,y: 600},
      duration: 100
    })
    await page.waitFor(1500)
    expect(page.path).toBe('pages/template/long-waterflow-nested/long-waterflow-nested')
  });

})