sticky-section.test.js 447 字节
Newer Older
shutao-dc's avatar
shutao-dc 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
describe('component-native-sticky-section', () => {
  let page
  beforeAll(async () => {
    page = await program.reLaunch('/pages/component/sticky-section/sticky-section')
    await page.waitFor('sticky-section')
  })

  //检测吸顶上推效果
  it('check_sticky_section', async () => {
    await page.callMethod('listViewScrollByY', 1000)
    const image = await program.screenshot();
    expect(image).toMatchImageSnapshot();
  })
})