提交 92a72f07 编写于 作者: 雪洛's avatar 雪洛

feat: 调整测试例兼容web端

上级 fc6f8b8e
......@@ -21,28 +21,33 @@ describe('ExtApi-DownloadFile', () => {
it('Check ', async () => {
expect(res).toBe(true);
});
it('Check Set Cookie', async () => {
let shouldTestCookie = false
if (process.env.uniTestPlatformInfo.startsWith('android')) {
let version = process.env.uniTestPlatformInfo
version = version.split(" ")[1]
if(version > 9){
shouldTestCookie = version > 9
} else if (process.env.uniTestPlatformInfo.startsWith('web')) {
// TODO 测试网址调整后放开此测试
shouldTestCookie = false
}
it('Check Set Cookie', async () => {
if (!shouldTestCookie) {
return
}
res = await page.callMethod('jest_set_cookie')
await page.waitFor(1000);
res = await page.data('jest_result');
expect(res).toBe(true)
}
}
});
it('Check Delete Cookie', async () => {
if (process.env.uniTestPlatformInfo.startsWith('android')) {
let version = process.env.uniTestPlatformInfo
version = version.split(" ")[1]
if(version > 9){
if (!shouldTestCookie) {
return
}
res = await page.callMethod('jest_delete_cookie')
await page.waitFor(1000);
res = await page.data('jest_result');
expect(res).toBe(true)
}
}
});
});
......@@ -77,7 +77,7 @@
method: "GET",
timeout: 6000,
sslVerify: false,
withCredentials: false,
withCredentials: true,
firstIpv4: false,
success: () => {
this.jest_cookie_download(true)
......@@ -94,7 +94,7 @@
method: "GET",
timeout: 6000,
sslVerify: false,
withCredentials: false,
withCredentials: true,
firstIpv4: false,
success: () => {
this.jest_cookie_download(false)
......
const PAGE_PATH = '/pages/API/upload-file/upload-file'
describe('ExtApi-UploadFile', () => {
if(process.env.uniTestPlatformInfo.startsWith('web')){
// TODO: web 端暂不支持测试
it('web', async () => {
expect(1).toBe(1)
})
}
let page;
let res;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册