const platformInfo = process.env.uniTestPlatformInfo.toLocaleLowerCase() const isMP = platformInfo.startsWith('mp') describe('issue-15701', () => { if (isMP) { it('skip mp', () => { expect(1).toBe(1) }) return } let page beforeAll(async () => { page = await program.reLaunch('/pages/component/list-view/issue-15701') await page.waitFor(600) }) it('issue15701', async () => { expect(1).toBe(1) }) })