rich-text-list.test.js 358 B

123456789101112131415
  1. const PAGE_PATH = '/pages/component/rich-text/rich-text-list'
  2. describe('rich-text-list', () => {
  3. let page
  4. beforeAll(async () => {
  5. page = await program.reLaunch(PAGE_PATH)
  6. await page.waitFor(1500);
  7. })
  8. // 覆盖iOS平台bug,list 中使用 rich-text 时会引起崩溃
  9. it('richt-text-in-list', async () => {
  10. expect(1).toBe(1)
  11. })
  12. })