提交 828ec177 编写于 作者: D DCloud_LXH

feat(test getSystemManager): stat 传递文件路径时,path 为空字符串

上级 5fd7d08d
......@@ -840,7 +840,7 @@ describe('ExtApi-FileManagerTest', () => {
// 读取单个文件信息
let statsRet = await page.data('statsRet')
expect(statsRet.length).toEqual(1)
expect(statsRet[0].path).toMatch(new RegExp('/'))
expect(statsRet[0].path).toEqual('')
if (!isIOS) {
expect(statsRet[0].stats.size).toEqual(69)
}
......@@ -856,7 +856,7 @@ describe('ExtApi-FileManagerTest', () => {
// 读取单个文件信息
statsRet = await page.data('statsRet')
expect(statsRet.length).toEqual(1)
expect(statsRet[0].path).toMatch(new RegExp('/'))
expect(statsRet[0].path).toEqual('')
if (!isIOS) {
expect(statsRet[0].stats.size).toEqual(69)
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册