test-background-color-content.test.js 451 B

123456789101112131415
  1. describe('PagesJson-backgroundColorContent', () => {
  2. let page;
  3. beforeAll(async () => {
  4. page = await program.reLaunch(
  5. '/pages/template/test-background-color-content/test-background-color-content')
  6. await page.waitFor('view');
  7. });
  8. it('background color content size', async () => {
  9. await program.pageScrollTo(1000)
  10. const image = await program.screenshot({fullPage: true});
  11. expect(image).toSaveImageSnapshot()
  12. })
  13. });