animation-frame.test.js 759 字节
Newer Older
1
const PAGE_PATH = '/pages/API/animation-frame/animation-frame'
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

describe('API-cancelAnimationFrame', () => {
  let page
  beforeAll(async () => {
    page = await program.reLaunch(PAGE_PATH)
    await page.waitFor(600);
  });

  it('cancelAnimationFrame', async () => {
    await page.callMethod('startRequestAnimationFrame')
    await page.waitFor(100)
    const data1 = await page.data()
    expect(data1.testFrameCount > 0).toBe(true)

    await page.callMethod('stopRequestAnimationFrame')
    await page.waitFor(100)
    const data2 = await page.data()
    const testFrameCount = data2.testFrameCount

    await page.waitFor(100)
    const data3 = await page.data()
    expect(data3.testFrameCount).toBe(testFrameCount)
  });
});