提交 753982ec 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

test: 规避 ios 异常测试

上级 f5f22bf9
// uni-app自动化测试教程: uni-app自动化测试教程: https://uniapp.dcloud.net.cn/worktile/auto/hbuilderx-extension/
describe('API-theme-change', () => {
const platformInfo = process.env.uniTestPlatformInfo.toLocaleLowerCase()
const isIos = platformInfo.startsWith('ios')
if (isIos) {
it('dummyTest', () => {
expect(1).toBe(1)
})
return
}
let page;
const isApp = process.env.UNI_OS_NAME === "android" || process.env.UNI_OS_NAME === "ios";
......
jest.setTimeout(30000);
function getData(key = '') {
return new Promise(async (resolve, reject) => {
const data = await page.data()
resolve(key ? data[key] : data)
})
}
let page;
beforeAll(async () => {
page = await program.reLaunch('/pages/component/swiper/swiper')
await page.waitFor(600)
})
describe('test swiper', () => {
it('check indicator show', async () => {
await page.setData({
dotsSelect: true,
})
await page.waitFor(600)
await page.setData({
dotsSelect: false,
})
await page.waitFor(600)
/**
* todo 暂无判断条件
*/
});
jest.setTimeout(30000);
function getData(key = '') {
return new Promise(async (resolve, reject) => {
const data = await page.data()
resolve(key ? data[key] : data)
})
}
describe('test swiper', () => {
const platformInfo = process.env.uniTestPlatformInfo.toLocaleLowerCase()
const isIos = platformInfo.startsWith('ios')
if (isIos) {
it('dummyTest', () => {
expect(1).toBe(1)
})
return
}
let page;
beforeAll(async () => {
page = await program.reLaunch('/pages/component/swiper/swiper')
await page.waitFor(600)
})
it('check indicator show', async () => {
await page.setData({
dotsSelect: true,
})
await page.waitFor(600)
await page.setData({
dotsSelect: false,
})
await page.waitFor(600)
/**
* todo 暂无判断条件
*/
});
it('check autoplay loop', async () => {
await page.setData({
currentValChange: 0,
......@@ -44,34 +53,34 @@ describe('test swiper', () => {
await page.setData({
autoplaySelect: false
})
await page.waitFor(300)
});
it('check current', async () => {
await page.setData({
currentVal: 2,
})
await page.waitFor(600)
expect(await getData('currentValChange')).toEqual(2)
await page.setData({
currentVal: 0,
})
await page.waitFor(600)
expect(await getData('currentValChange')).toEqual(0)
});
it('check currentId', async () => {
await page.setData({
currentItemIdVal: 'C',
})
await page.waitFor(600)
expect(await getData('currentValChange')).toEqual(2)
await page.setData({
currentItemIdVal: 'A',
})
await page.waitFor(600)
expect(await getData('currentValChange')).toEqual(0)
await page.waitFor(300)
});
it('check current', async () => {
await page.setData({
currentVal: 2,
})
await page.waitFor(600)
expect(await getData('currentValChange')).toEqual(2)
await page.setData({
currentVal: 0,
})
await page.waitFor(600)
expect(await getData('currentValChange')).toEqual(0)
});
it('check currentId', async () => {
await page.setData({
currentItemIdVal: 'C',
})
await page.waitFor(600)
expect(await getData('currentValChange')).toEqual(2)
await page.setData({
currentItemIdVal: 'A',
})
await page.waitFor(600)
expect(await getData('currentValChange')).toEqual(0)
});
it('Trigger Event', async () => {
......@@ -130,5 +139,5 @@ describe('test swiper', () => {
}
expect(animationfinishInfo.currentTarget).not.toBeFalsy();
expect(animationfinishInfo.target).not.toBeFalsy();
});
});
});
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册