mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
test(NoticeBar): add demo test
This commit is contained in:
parent
beaa24f81b
commit
fa3b17fdaa
@ -99,6 +99,7 @@
|
||||
"van-loading-demo": "./dist/loading/demo/index",
|
||||
"van-nav-bar": "./dist/nav-bar/index",
|
||||
"van-notice-bar": "./dist/notice-bar/index",
|
||||
"van-notice-bar-demo": "./dist/notice-bar/demo/index",
|
||||
"van-notify": "./dist/notify/index",
|
||||
"van-notify-demo": "./dist/notify/demo/index",
|
||||
"van-panel": "./dist/panel/index",
|
||||
|
@ -1,8 +1,3 @@
|
||||
import Page from '../../common/page';
|
||||
|
||||
Page({
|
||||
data: {
|
||||
text: '在代码阅读过程中人们说脏话的频率是衡量代码质量的唯一标准。',
|
||||
shortText: '技术是开发它的人的共同灵魂。',
|
||||
},
|
||||
});
|
||||
Page();
|
||||
|
@ -1,30 +1 @@
|
||||
<demo-block title="基础用法">
|
||||
<van-notice-bar
|
||||
text="{{ text }}"
|
||||
left-icon="volume-o"
|
||||
/>
|
||||
</demo-block>
|
||||
|
||||
<demo-block title="滚动模式">
|
||||
<van-notice-bar scrollable text="{{ shortText }}" custom-class="demo-margin-bottom" />
|
||||
<van-notice-bar scrollable="{{ false }}" text="{{ text }}" custom-class="demo-margin-bottom" />
|
||||
</demo-block>
|
||||
|
||||
<demo-block title="多行展示">
|
||||
<van-notice-bar wrapable scrollable="{{ false }}" text="{{ text }}" />
|
||||
</demo-block>
|
||||
|
||||
<demo-block title="通知栏模式">
|
||||
<van-notice-bar mode="closeable" text="{{ shortText }}" />
|
||||
<van-notice-bar custom-class="margin-top" mode="link" text="{{ shortText }}" />
|
||||
</demo-block>
|
||||
|
||||
<demo-block title="自定义样式">
|
||||
<van-notice-bar
|
||||
text="{{ shortText }}"
|
||||
color="#1989fa"
|
||||
background="#ecf9ff"
|
||||
left-icon="info-o"
|
||||
>
|
||||
</van-notice-bar>
|
||||
</demo-block>
|
||||
<van-notice-bar-demo />
|
||||
|
7
packages/notice-bar/demo/index.json
Normal file
7
packages/notice-bar/demo/index.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"component": true,
|
||||
"usingComponents": {
|
||||
"van-notice-bar": "../../notice-bar/index",
|
||||
"demo-block": "../../../example/components/demo-block/index"
|
||||
}
|
||||
}
|
@ -1,4 +1,3 @@
|
||||
/* pages/notice-bar/index.wxss */
|
||||
.margin-top {
|
||||
margin-top: 4px;
|
||||
}
|
8
packages/notice-bar/demo/index.ts
Normal file
8
packages/notice-bar/demo/index.ts
Normal file
@ -0,0 +1,8 @@
|
||||
import { VantComponent } from '../../common/component';
|
||||
|
||||
VantComponent({
|
||||
data: {
|
||||
text: '在代码阅读过程中人们说脏话的频率是衡量代码质量的唯一标准。',
|
||||
shortText: '技术是开发它的人的共同灵魂。',
|
||||
},
|
||||
});
|
30
packages/notice-bar/demo/index.wxml
Normal file
30
packages/notice-bar/demo/index.wxml
Normal file
@ -0,0 +1,30 @@
|
||||
<demo-block title="基础用法">
|
||||
<van-notice-bar
|
||||
text="{{ text }}"
|
||||
left-icon="volume-o"
|
||||
/>
|
||||
</demo-block>
|
||||
|
||||
<demo-block title="滚动模式">
|
||||
<van-notice-bar scrollable text="{{ shortText }}" custom-class="demo-margin-bottom" />
|
||||
<van-notice-bar scrollable="{{ false }}" text="{{ text }}" custom-class="demo-margin-bottom" />
|
||||
</demo-block>
|
||||
|
||||
<demo-block title="多行展示">
|
||||
<van-notice-bar wrapable scrollable="{{ false }}" text="{{ text }}" />
|
||||
</demo-block>
|
||||
|
||||
<demo-block title="通知栏模式">
|
||||
<van-notice-bar mode="closeable" text="{{ shortText }}" />
|
||||
<van-notice-bar custom-class="margin-top" mode="link" text="{{ shortText }}" />
|
||||
</demo-block>
|
||||
|
||||
<demo-block title="自定义样式">
|
||||
<van-notice-bar
|
||||
text="{{ shortText }}"
|
||||
color="#1989fa"
|
||||
background="#ecf9ff"
|
||||
left-icon="info-o"
|
||||
>
|
||||
</van-notice-bar>
|
||||
</demo-block>
|
11
packages/notice-bar/test/demo.spec.ts
Normal file
11
packages/notice-bar/test/demo.spec.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import path from 'path';
|
||||
import simulate from 'miniprogram-simulate';
|
||||
|
||||
test('should render demo and match snapshot', () => {
|
||||
const id = simulate.load(path.resolve(__dirname, '../demo/index'), {
|
||||
rootPath: path.resolve(__dirname, '../../'),
|
||||
});
|
||||
const comp = simulate.render(id);
|
||||
comp.attach(document.createElement('parent-wrapper'));
|
||||
expect(comp.toJSON()).toMatchSnapshot();
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user