Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uniCloud
提交
b92ad469
H
hello-uniCloud
项目概览
DCloud
/
hello-uniCloud
通知
294
Star
3
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello-uniCloud
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
b92ad469
编写于
4月 29, 2024
作者:
Anne_LXM
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test ignore
上级
92ce4b57
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
28 addition
and
3 deletion
+28
-3
env.js
env.js
+3
-3
pages/user-info/add.test.js
pages/user-info/add.test.js
+6
-0
pages/user-info/detail.test.js
pages/user-info/detail.test.js
+6
-0
pages/user-info/edit.test.js
pages/user-info/edit.test.js
+6
-0
pages/user-info/list.test.js
pages/user-info/list.test.js
+7
-0
未找到文件。
env.js
浏览文件 @
b92ad469
...
...
@@ -4,7 +4,7 @@ module.exports = {
"
options
"
:
{
"
headless
"
:
false
},
"
executablePath
"
:
"
C:/Program Files/Google/Chrome/Application/chrome.exe
"
"
executablePath
"
:
""
},
"
mp-weixin
"
:
{
"
executablePath
"
:
"
D:/software/weixin-10-12/微信web开发者工具/cli.bat
"
...
...
@@ -26,10 +26,10 @@ module.exports = {
},
"
app-plus
"
:
{
"
android
"
:
{
"
executablePath
"
:
"
D:
\\
xm
\\
download
\\
uni-app-x-dev
\\
HBuilderX.3.9.0.20230708.1221-dev
\\
HBuilderX
\\
plugins
\\
launcher
\\
base
\\
android_base.apk
"
,
"
executablePath
"
:
"
D:
\\
HX
\\
insideTest
\\
alpha
\\
HBuilderX.4.0.2024012502-alpha
\\
HBuilderX
\\
plugins
\\
launcher
\\
base
\\
android_base.apk
"
,
"
id
"
:
"
emulator-5554
"
},
"
version
"
:
"
D:
\\
xm
\\
download
\\
uni-app-x-dev
\\
HBuilderX.3.9.0.20230708.1221-dev
\\
HBuilderX
\\
plugins
\\
launcher
\\
base
\\
version.txt
"
,
"
version
"
:
"
D:
\\
HX
\\
insideTest
\\
alpha
\\
HBuilderX.4.0.2024012502-alpha
\\
HBuilderX
\\
plugins
\\
launcher
\\
base
\\
version.txt
"
,
"
ios
"
:
{
"
id
"
:
""
,
"
executablePath
"
:
""
...
...
pages/user-info/add.test.js
浏览文件 @
b92ad469
describe
(
'
pages/user-info/add.vue
'
,
()
=>
{
let
page
if
(
process
.
env
.
uniTestPlatformInfo
==
'
ios_simulator 13.7
'
){
it
(
'
ios
'
,
async
()
=>
{
expect
(
1
).
toBe
(
1
)
return
})
}
beforeAll
(
async
()
=>
{
// 重新reLaunch至首页,并获取首页page对象(其中 program 是uni-automator自动注入的全局对象)
page
=
await
program
.
reLaunch
(
'
/pages/user-info/add
'
)
...
...
pages/user-info/detail.test.js
浏览文件 @
b92ad469
describe
(
'
pages/user-info/detail.vue
'
,
()
=>
{
let
page
if
(
process
.
env
.
uniTestPlatformInfo
==
'
ios_simulator 13.7
'
){
it
(
'
ios
'
,
async
()
=>
{
expect
(
1
).
toBe
(
1
)
return
})
}
beforeAll
(
async
()
=>
{
// 重新reLaunch至首页,并获取首页page对象(其中 program 是uni-automator自动注入的全局对象)
// page = await program.navigateTo('/pages/user-info/detail')
...
...
pages/user-info/edit.test.js
浏览文件 @
b92ad469
describe
(
'
pages/user-info/detail.vue
'
,
()
=>
{
let
page
if
(
process
.
env
.
uniTestPlatformInfo
==
'
ios_simulator 13.7
'
){
it
(
'
ios
'
,
async
()
=>
{
expect
(
1
).
toBe
(
1
)
return
})
}
beforeAll
(
async
()
=>
{
// 重新reLaunch至首页,并获取首页page对象(其中 program 是uni-automator自动注入的全局对象)
// page = await program.navigateTo('/pages/user-info/edit?id=601d044ac9e7be0001cc00b8')
...
...
pages/user-info/list.test.js
浏览文件 @
b92ad469
// jest.setTimeout(20000)
describe
(
'
pages/user-info/list.vue
'
,
()
=>
{
let
page
,
currentPage
;
console
.
log
(
'
uniTestPlatformInfo
'
,
process
.
env
.
uniTestPlatformInfo
)
if
(
process
.
env
.
uniTestPlatformInfo
==
'
ios_simulator 13.7
'
){
it
(
'
ios
'
,
async
()
=>
{
expect
(
1
).
toBe
(
1
)
return
})
}
beforeAll
(
async
()
=>
{
// 重新reLaunch至首页,并获取首页page对象(其中 program 是uni-automator自动注入的全局对象)
page
=
await
program
.
navigateTo
(
'
/pages/user-info/list
'
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录