Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
730a269e
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5992
Star
90
Fork
162
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
18
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello uni-app x
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
18
Issue
18
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
730a269e
编写于
6月 30, 2023
作者:
Y
yurj26
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(component): test
上级
23f469e5
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
19 addition
and
17 deletion
+19
-17
pages/component/button/button.test.js
pages/component/button/button.test.js
+2
-2
pages/component/checkbox/checkbox.test.js
pages/component/checkbox/checkbox.test.js
+7
-5
pages/component/checkbox/checkbox.uvue
pages/component/checkbox/checkbox.uvue
+3
-3
pages/component/radio/radio.test.js
pages/component/radio/radio.test.js
+4
-4
pages/component/radio/radio.uvue
pages/component/radio/radio.uvue
+3
-3
未找到文件。
pages/component/button/button.test.js
浏览文件 @
730a269e
...
...
@@ -22,8 +22,8 @@ describe('Button.uvue', () => {
expect
(
await
getData
(
'
count
'
)).
toEqual
(
1
)
})
it
(
'
length
'
,
async
()
=>
{
const
btnLen
=
await
page
.
$$
(
'
.button
'
)
expect
(
btnLen
.
length
).
toBe
(
13
)
const
elements
=
await
page
.
$$
(
'
.button
'
)
expect
(
elements
.
length
).
toBe
(
13
)
})
it
(
'
text
'
,
async
()
=>
{
const
textBtn
=
await
page
.
$
(
'
.text-button
'
)
...
...
pages/component/checkbox/checkbox.test.js
浏览文件 @
730a269e
...
...
@@ -22,7 +22,9 @@ describe('Checkbox.uvue', () => {
await
cb
.
tap
()
expect
(
await
getData
(
'
value
'
)).
toEqual
([
"
cb1
"
])
await
cb2
.
tap
()
expect
(
await
getData
(
'
value
'
)).
toEqual
([
"
cb1
"
])
expect
(
await
getData
(
'
value
'
)).
toEqual
([
"
cb1
"
])
await
cb1
.
tap
()
expect
(
await
getData
(
'
value
'
)).
toEqual
([])
})
it
(
'
length
'
,
async
()
=>
{
const
checkboxGroupElements
=
await
page
.
$$
(
'
.checkbox-group
'
)
...
...
@@ -31,12 +33,12 @@ describe('Checkbox.uvue', () => {
expect
(
checkboxElements
.
length
).
toBe
(
11
)
})
it
(
'
text
'
,
async
()
=>
{
const
cb
=
await
page
.
$
(
'
.cb
'
)
expect
(
await
cb
.
text
()).
toEqual
(
'
选中
'
)
const
cb
=
await
page
.
$
(
'
.cb
1
'
)
expect
(
await
cb
.
text
()).
toEqual
(
'
未
选中
'
)
await
page
.
setData
({
text
:
'
check
ed
'
text
:
'
not select
ed
'
})
expect
(
await
cb
.
text
()).
toEqual
(
'
check
ed
'
)
expect
(
await
cb
.
text
()).
toEqual
(
'
not select
ed
'
)
})
it
(
'
checked
'
,
async
()
=>
{
const
cb
=
await
page
.
$
(
'
.cb
'
)
...
...
pages/component/checkbox/checkbox.uvue
浏览文件 @
730a269e
...
...
@@ -10,8 +10,8 @@
<view>
<checkbox-group class="uni-flex uni-row checkbox-group" @change="testChange">
<checkbox value="cb" :checked="checked" :color="color" style="margin-right: 30rpx;"
class="checkbox cb">
{{text}}
</checkbox>
<checkbox value="cb1" style="margin-right: 30rpx;" class="checkbox cb1">
未选中
</checkbox>
class="checkbox cb">
选中
</checkbox>
<checkbox value="cb1" style="margin-right: 30rpx;" class="checkbox cb1">
{{text}}
</checkbox>
<checkbox value="cb2" :disabled="disabled" class="checkbox cb2">禁用</checkbox>
</checkbox-group>
</view>
...
...
@@ -93,7 +93,7 @@
}
] as ItemType[],
text: '选中',
text: '
未
选中',
value: [] as string[],
disabled: true,
checked: true,
...
...
pages/component/radio/radio.test.js
浏览文件 @
730a269e
...
...
@@ -31,12 +31,12 @@ describe('Radio.uvue', () => {
expect
(
radioElements
.
length
).
toBe
(
11
)
})
it
(
'
text
'
,
async
()
=>
{
const
radio
=
await
page
.
$
(
'
.r
'
)
expect
(
await
radio
.
text
()).
toEqual
(
'
选中
'
)
const
radio
=
await
page
.
$
(
'
.r
1
'
)
expect
(
await
radio
.
text
()).
toEqual
(
'
未
选中
'
)
await
page
.
setData
({
text
:
'
check
ed
'
text
:
'
not select
ed
'
})
expect
(
await
radio
.
text
()).
toEqual
(
'
check
ed
'
)
expect
(
await
radio
.
text
()).
toEqual
(
'
not select
ed
'
)
})
it
(
'
checked
'
,
async
()
=>
{
const
radio
=
await
page
.
$
(
'
.r
'
)
...
...
pages/component/radio/radio.uvue
浏览文件 @
730a269e
...
...
@@ -8,9 +8,9 @@
</text>
</view>
<radio-group class="uni-flex uni-row radio-group" @change="testChange">
<radio value="r" :checked="checked" :color="color" style="margin-right: 30rpx;" class="radio r">
{{text}}
<radio value="r" :checked="checked" :color="color" style="margin-right: 30rpx;" class="radio r">
选中
</radio>
<radio value="r1" style="margin-right: 30rpx;" class="radio r1">
未选中
</radio>
<radio value="r1" style="margin-right: 30rpx;" class="radio r1">
{{text}}
</radio>
<radio value="r2" :disabled="disabled" class="radio r2">禁用</radio>
</radio-group>
</view>
...
...
@@ -82,7 +82,7 @@
current: 0,
value: '',
text: '选中',
text: '
未
选中',
disabled: true,
checked: true,
color: '#007aff'
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录