12345678910111213141516171819202122232425 |
- const platformInfo = process.env.uniTestPlatformInfo.toLocaleLowerCase()
- const isMP = platformInfo.startsWith('mp')
- describe('issue-2199', () => {
- if (isMP) {
- it('skip mp', () => {
- expect(1).toBe(1)
- })
- return
- }
- let page
- beforeAll(async () => {
- page = await program.reLaunch('/pages/component/list-view/issue-2199')
- await page.waitFor(600)
- })
- it('screenshot', async () => {
- const image = await program.screenshot({
- fullPage: true
- });
- expect(image).toSaveImageSnapshot();
- })
- })
|