Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello uni-app x
提交
ee8a872c
H
hello uni-app x
项目概览
DCloud
/
hello uni-app x
通知
5995
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看板
提交
ee8a872c
编写于
6月 30, 2023
作者:
Y
yurj26
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
feat(button): test
上级
122546b5
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
12 addition
and
16 deletion
+12
-16
pages/component/button/button.test.js
pages/component/button/button.test.js
+7
-11
pages/component/button/button.uvue
pages/component/button/button.uvue
+5
-5
未找到文件。
pages/component/button/button.test.js
浏览文件 @
ee8a872c
...
...
@@ -35,9 +35,8 @@ describe('Button.uvue', () => {
expect
(
await
textBtn
.
text
()).
toEqual
(
'
button
'
)
})
it
(
'
type
'
,
async
()
=>
{
// TODO 目前获取组件属性只能通过组件的name,并且拿到的是最后一个
const
btn
=
await
page
.
$
(
'
Button
'
)
expect
(
await
btn
.
property
(
'
type
'
)).
toBe
(
'
warn
'
)
const
btn
=
await
page
.
$
(
'
.test-button
'
)
expect
(
await
btn
.
property
(
'
type
'
)).
toBe
(
'
primary
'
)
await
page
.
setData
({
type
:
'
default
'
})
...
...
@@ -50,19 +49,16 @@ describe('Button.uvue', () => {
expect
(
await
btn
.
property
(
'
type
'
)).
toBe
(
'
warn
'
)
})
it
(
'
size
'
,
async
()
=>
{
const
btn
=
await
page
.
$
(
'
Button
'
)
expect
(
await
btn
.
property
(
'
size
'
)).
toBe
(
'
mini
'
)
await
page
.
setData
({
size
:
'
default
'
})
await
page
.
waitFor
(
500
)
const
btn
=
await
page
.
$
(
'
.test-button
'
)
expect
(
await
btn
.
property
(
'
size
'
)).
toBe
(
'
default
'
)
await
page
.
setData
({
size
:
'
mini
'
})
await
page
.
waitFor
(
500
)
expect
(
await
btn
.
property
(
'
size
'
)).
toBe
(
'
mini
'
)
})
it
(
'
plain
'
,
async
()
=>
{
const
btn
=
await
page
.
$
(
'
B
utton
'
)
const
btn
=
await
page
.
$
(
'
.test-b
utton
'
)
expect
(
await
btn
.
property
(
'
plain
'
)).
toBe
(
false
)
await
page
.
setData
({
plain
:
true
...
...
@@ -71,7 +67,7 @@ describe('Button.uvue', () => {
expect
(
await
btn
.
property
(
'
plain
'
)).
toBe
(
true
)
})
it
(
'
disabled
'
,
async
()
=>
{
const
btn
=
await
page
.
$
(
'
B
utton
'
)
const
btn
=
await
page
.
$
(
'
.test-b
utton
'
)
expect
(
await
btn
.
property
(
'
disabled
'
)).
toBe
(
false
)
await
page
.
setData
({
disabled
:
true
...
...
pages/component/button/button.uvue
浏览文件 @
ee8a872c
...
...
@@ -2,7 +2,8 @@
<view>
<page-head :title="title"></page-head>
<view class="uni-padding-wrap uni-common-mt">
<button type="primary" class="button test-button">页面主操作 Normal</button>
<button :type="type" :size="size" :plain="plain" :disabled="disabled" class="button test-button">页面主操作
Normal</button>
<!-- <button type="primary" :loading="loading" class="button">页面主操作 Loading</button> -->
<button type="primary" :disabled="true" class="button">页面主操作 Disabled</button>
...
...
@@ -24,8 +25,7 @@
<view class="uni-flex uni-row">
<button class="button mini-btn" type="primary" size="mini">按钮</button>
<button class="button mini-btn" type="default" size="mini">按钮</button>
<button class="button mini-btn" :type="type" :size="size" :plain="plain"
:disabled="disabled">按钮</button>
<button class="button mini-btn" type="warn" size="mini">按钮</button>
</view>
</view>
</view>
...
...
@@ -39,8 +39,8 @@
loading: false,
_timer: 0,
text: '按钮',
type: '
warn
',
size: '
mini
',
type: '
primary
',
size: '
default
',
plain: false,
disabled: false,
count: 0
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录