font-family.test.js 431 B

12345678910111213141516
  1. // uni-app自动化测试教程: https://uniapp.dcloud.net.cn/worktile/auto/hbuilderx-extension/
  2. describe('css-font-family', () => {
  3. let page;
  4. beforeAll(async () => {
  5. page = await program.reLaunch('/pages/CSS/text/font-family');
  6. await page.waitFor(3000);
  7. });
  8. it('screenshot', async () => {
  9. const image = await program.screenshot({
  10. fullPage: true
  11. })
  12. expect(image).toSaveImageSnapshot()
  13. });
  14. });