mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
test(NavBar): update test cases
This commit is contained in:
parent
2b34fac38d
commit
98c553de29
@ -1,6 +1,6 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`should render default slot and match snapshot 1`] = `
|
exports[`should render default slot correctly 1`] = `
|
||||||
<button type="button" class="van-button van-button--default van-button--large van-action-bar-button">
|
<button type="button" class="van-button van-button--default van-button--large van-action-bar-button">
|
||||||
<div class="van-button__content">
|
<div class="van-button__content">
|
||||||
<!----><span class="van-button__text">Content</span>
|
<!----><span class="van-button__text">Content</span>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { mount } from '@vue/test-utils';
|
import { mount } from '@vue/test-utils';
|
||||||
import ActionBarButton from '..';
|
import ActionBarButton from '..';
|
||||||
|
|
||||||
test('should render default slot and match snapshot', () => {
|
test('should render default slot correctly', () => {
|
||||||
const wrapper = mount(ActionBarButton, {
|
const wrapper = mount(ActionBarButton, {
|
||||||
slots: {
|
slots: {
|
||||||
default: 'Content',
|
default: 'Content',
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`should render default slot and match snapshot 1`] = `
|
exports[`should render default slot correctly 1`] = `
|
||||||
<div role="button" class="van-action-bar-icon" tabindex="0">
|
<div role="button" class="van-action-bar-icon" tabindex="0">
|
||||||
<div class="van-badge__wrapper van-icon van-icon-undefined van-action-bar-icon__icon">
|
<div class="van-badge__wrapper van-icon van-icon-undefined van-action-bar-icon__icon">
|
||||||
<!---->
|
<!---->
|
||||||
@ -10,7 +10,7 @@ exports[`should render default slot and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`should render icon slot and match snapshot 1`] = `
|
exports[`should render icon slot correctly 1`] = `
|
||||||
<div role="button" class="van-action-bar-icon" tabindex="0">
|
<div role="button" class="van-action-bar-icon" tabindex="0">
|
||||||
<div class="van-badge__wrapper van-action-bar-icon__icon">Custom Icon
|
<div class="van-badge__wrapper van-action-bar-icon__icon">Custom Icon
|
||||||
<!---->
|
<!---->
|
||||||
@ -18,14 +18,14 @@ exports[`should render icon slot and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`should render icon slot with badge and match snapshot 1`] = `
|
exports[`should render icon slot with badge correctly 1`] = `
|
||||||
<div role="button" class="van-action-bar-icon" tabindex="0">
|
<div role="button" class="van-action-bar-icon" tabindex="0">
|
||||||
<div class="van-badge__wrapper van-action-bar-icon__icon">Custom Icon<div class="van-badge van-badge--fixed">1</div>
|
<div class="van-badge__wrapper van-action-bar-icon__icon">Custom Icon<div class="van-badge van-badge--fixed">1</div>
|
||||||
</div>Content
|
</div>Content
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`should render icon slot with dot and match snapshot 1`] = `
|
exports[`should render icon slot with dot correctly 1`] = `
|
||||||
<div role="button" class="van-action-bar-icon" tabindex="0">
|
<div role="button" class="van-action-bar-icon" tabindex="0">
|
||||||
<div class="van-badge__wrapper van-action-bar-icon__icon">Custom Icon<div class="van-badge van-badge--dot van-badge--fixed">
|
<div class="van-badge__wrapper van-action-bar-icon__icon">Custom Icon<div class="van-badge van-badge--dot van-badge--fixed">
|
||||||
<!---->
|
<!---->
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { mount } from '@vue/test-utils';
|
import { mount } from '@vue/test-utils';
|
||||||
import ActionBarIcon from '..';
|
import ActionBarIcon from '..';
|
||||||
|
|
||||||
test('should render default slot and match snapshot', () => {
|
test('should render default slot correctly', () => {
|
||||||
const wrapper = mount(ActionBarIcon, {
|
const wrapper = mount(ActionBarIcon, {
|
||||||
slots: {
|
slots: {
|
||||||
default: 'Content',
|
default: 'Content',
|
||||||
@ -10,7 +10,7 @@ test('should render default slot and match snapshot', () => {
|
|||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render icon slot and match snapshot', () => {
|
test('should render icon slot correctly', () => {
|
||||||
const wrapper = mount(ActionBarIcon, {
|
const wrapper = mount(ActionBarIcon, {
|
||||||
slots: {
|
slots: {
|
||||||
default: 'Content',
|
default: 'Content',
|
||||||
@ -21,7 +21,7 @@ test('should render icon slot and match snapshot', () => {
|
|||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render icon slot with badge and match snapshot', () => {
|
test('should render icon slot with badge correctly', () => {
|
||||||
const wrapper = mount(ActionBarIcon, {
|
const wrapper = mount(ActionBarIcon, {
|
||||||
props: {
|
props: {
|
||||||
badge: '1',
|
badge: '1',
|
||||||
@ -35,7 +35,7 @@ test('should render icon slot with badge and match snapshot', () => {
|
|||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render icon slot with dot and match snapshot', () => {
|
test('should render icon slot with dot correctly', () => {
|
||||||
const wrapper = mount(ActionBarIcon, {
|
const wrapper = mount(ActionBarIcon, {
|
||||||
props: {
|
props: {
|
||||||
dot: true,
|
dot: true,
|
||||||
|
@ -7,7 +7,7 @@ exports[`should allow to custom close icon with closeIcon prop 1`] = `
|
|||||||
<!----></i>
|
<!----></i>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`should render default slot and match snapshot 1`] = `
|
exports[`should render default slot correctly 1`] = `
|
||||||
<transition-stub>
|
<transition-stub>
|
||||||
<div class="van-overlay">
|
<div class="van-overlay">
|
||||||
<!---->
|
<!---->
|
||||||
@ -28,11 +28,11 @@ exports[`should render default slot and match snapshot 1`] = `
|
|||||||
</transition-stub>
|
</transition-stub>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`should render description and match snapshot 1`] = `<div class="van-action-sheet__description">This is a description</div>`;
|
exports[`should render description correctly 1`] = `<div class="van-action-sheet__description">This is a description</div>`;
|
||||||
|
|
||||||
exports[`should render description slot when match snapshot 1`] = `<div class="van-action-sheet__description">Custom Description</div>`;
|
exports[`should render description slot when match snapshot 1`] = `<div class="van-action-sheet__description">Custom Description</div>`;
|
||||||
|
|
||||||
exports[`should render subname and match snapshot 1`] = `
|
exports[`should render subname correctly 1`] = `
|
||||||
<button type="button" class="van-action-sheet__item"><span class="van-action-sheet__name">Option</span>
|
<button type="button" class="van-action-sheet__item"><span class="van-action-sheet__name">Option</span>
|
||||||
<div class="van-action-sheet__subname">Subname</div></button>
|
<div class="van-action-sheet__subname">Subname</div></button>
|
||||||
`;
|
`;
|
||||||
|
@ -64,7 +64,7 @@ test('should emit cancel event after clicking cancel button', () => {
|
|||||||
expect(wrapper.emitted('cancel').length).toEqual(1);
|
expect(wrapper.emitted('cancel').length).toEqual(1);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render subname and match snapshot', () => {
|
test('should render subname correctly', () => {
|
||||||
const wrapper = mount(ActionSheet, {
|
const wrapper = mount(ActionSheet, {
|
||||||
props: {
|
props: {
|
||||||
show: true,
|
show: true,
|
||||||
@ -84,7 +84,7 @@ test('should render content after disabling the lazy-render prop', async () => {
|
|||||||
expect(wrapper.find('.van-action-sheet__content').exists()).toBeTruthy();
|
expect(wrapper.find('.van-action-sheet__content').exists()).toBeTruthy();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render default slot and match snapshot', () => {
|
test('should render default slot correctly', () => {
|
||||||
const wrapper = mount(ActionSheet, {
|
const wrapper = mount(ActionSheet, {
|
||||||
props: {
|
props: {
|
||||||
show: true,
|
show: true,
|
||||||
@ -160,7 +160,7 @@ test('should allow to custom close icon with closeIcon prop', () => {
|
|||||||
expect(wrapper.find('.van-action-sheet__close').html()).toMatchSnapshot();
|
expect(wrapper.find('.van-action-sheet__close').html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render description and match snapshot', () => {
|
test('should render description correctly', () => {
|
||||||
const wrapper = mount(ActionSheet, {
|
const wrapper = mount(ActionSheet, {
|
||||||
props: {
|
props: {
|
||||||
show: true,
|
show: true,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`should render content slot and match snapshot 1`] = `<div class="van-badge">Custom Content</div>`;
|
exports[`should render content slot correctly 1`] = `<div class="van-badge">Custom Content</div>`;
|
||||||
|
|
||||||
exports[`should render nothing when badge is empty string 1`] = `<!---->`;
|
exports[`should render nothing when badge is empty string 1`] = `<!---->`;
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ test('should render nothing when badge is zero', () => {
|
|||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render content slot and match snapshot', () => {
|
test('should render content slot correctly', () => {
|
||||||
const wrapper = mount(Badge, {
|
const wrapper = mount(Badge, {
|
||||||
slots: {
|
slots: {
|
||||||
content: () => 'Custom Content',
|
content: () => 'Custom Content',
|
||||||
|
@ -23,7 +23,7 @@ exports[`should render icon in the right side when setting icon-position to righ
|
|||||||
</button>
|
</button>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`should render loading slot and match snapshot 1`] = `
|
exports[`should render loading slot correctly 1`] = `
|
||||||
<button type="button" class="van-button van-button--default van-button--normal van-button--loading">
|
<button type="button" class="van-button van-button--default van-button--normal van-button--loading">
|
||||||
<div class="van-button__content">Custom Loading
|
<div class="van-button__content">Custom Loading
|
||||||
<!---->
|
<!---->
|
||||||
|
@ -51,7 +51,7 @@ test('should change icon class prefix when using icon-prefix prop', () => {
|
|||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render loading slot and match snapshot', () => {
|
test('should render loading slot correctly', () => {
|
||||||
const wrapper = mount(Button, {
|
const wrapper = mount(Button, {
|
||||||
props: {
|
props: {
|
||||||
loading: true,
|
loading: true,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
exports[`should render title slot and match snapshot 1`] = `
|
exports[`should render title slot correctly 1`] = `
|
||||||
<div class="van-cell-group__title">Custom Title</div>
|
<div class="van-cell-group__title">Custom Title</div>
|
||||||
<div class="van-cell-group van-hairline--top-bottom">
|
<div class="van-cell-group van-hairline--top-bottom">
|
||||||
<!---->
|
<!---->
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import CellGroup from '..';
|
import CellGroup from '..';
|
||||||
import { mount } from '@vue/test-utils';
|
import { mount } from '@vue/test-utils';
|
||||||
|
|
||||||
test('should render title slot and match snapshot', () => {
|
test('should render title slot correctly', () => {
|
||||||
const wrapper = mount(CellGroup, {
|
const wrapper = mount(CellGroup, {
|
||||||
slots: {
|
slots: {
|
||||||
title: () => 'Custom Title',
|
title: () => 'Custom Title',
|
||||||
|
@ -19,7 +19,7 @@ exports[`should change icon class prefix when using icon-prefix prop 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`should render default slot and match snapshot 1`] = `
|
exports[`should render default slot correctly 1`] = `
|
||||||
<div class="van-cell">
|
<div class="van-cell">
|
||||||
<!---->
|
<!---->
|
||||||
<!---->
|
<!---->
|
||||||
@ -29,7 +29,7 @@ exports[`should render default slot and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`should render extra slot and match snapshot 1`] = `
|
exports[`should render extra slot correctly 1`] = `
|
||||||
<div class="van-cell">
|
<div class="van-cell">
|
||||||
<!---->
|
<!---->
|
||||||
<!---->
|
<!---->
|
||||||
@ -37,7 +37,7 @@ exports[`should render extra slot and match snapshot 1`] = `
|
|||||||
<!---->Custom Extra</div>
|
<!---->Custom Extra</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`should render icon slot and match snapshot 1`] = `
|
exports[`should render icon slot correctly 1`] = `
|
||||||
<div class="van-cell">Custom Icon
|
<div class="van-cell">Custom Icon
|
||||||
<!---->
|
<!---->
|
||||||
<!---->
|
<!---->
|
||||||
@ -46,7 +46,7 @@ exports[`should render icon slot and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`should render label slot and match snapshot 1`] = `
|
exports[`should render label slot correctly 1`] = `
|
||||||
<div class="van-cell">
|
<div class="van-cell">
|
||||||
<!---->
|
<!---->
|
||||||
<div class="van-cell__title"><span>Title</span>
|
<div class="van-cell__title"><span>Title</span>
|
||||||
@ -58,7 +58,7 @@ exports[`should render label slot and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`should render title slot and match snapshot 1`] = `
|
exports[`should render title slot correctly 1`] = `
|
||||||
<div class="van-cell">
|
<div class="van-cell">
|
||||||
<!---->
|
<!---->
|
||||||
<div class="van-cell__title">Custom Title
|
<div class="van-cell__title">Custom Title
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import Cell from '..';
|
import Cell from '..';
|
||||||
import { mount } from '@vue/test-utils';
|
import { mount } from '@vue/test-utils';
|
||||||
|
|
||||||
test('should render default slot and match snapshot', () => {
|
test('should render default slot correctly', () => {
|
||||||
const wrapper = mount(Cell, {
|
const wrapper = mount(Cell, {
|
||||||
slots: {
|
slots: {
|
||||||
default: () => 'Custom Default',
|
default: () => 'Custom Default',
|
||||||
@ -10,7 +10,7 @@ test('should render default slot and match snapshot', () => {
|
|||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render title slot and match snapshot', () => {
|
test('should render title slot correctly', () => {
|
||||||
const wrapper = mount(Cell, {
|
const wrapper = mount(Cell, {
|
||||||
slots: {
|
slots: {
|
||||||
title: () => 'Custom Title',
|
title: () => 'Custom Title',
|
||||||
@ -19,7 +19,7 @@ test('should render title slot and match snapshot', () => {
|
|||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render label slot and match snapshot', () => {
|
test('should render label slot correctly', () => {
|
||||||
const wrapper = mount(Cell, {
|
const wrapper = mount(Cell, {
|
||||||
props: {
|
props: {
|
||||||
title: 'Title',
|
title: 'Title',
|
||||||
@ -31,7 +31,7 @@ test('should render label slot and match snapshot', () => {
|
|||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render icon slot and match snapshot', () => {
|
test('should render icon slot correctly', () => {
|
||||||
const wrapper = mount(Cell, {
|
const wrapper = mount(Cell, {
|
||||||
slots: {
|
slots: {
|
||||||
icon: () => 'Custom Icon',
|
icon: () => 'Custom Icon',
|
||||||
@ -40,7 +40,7 @@ test('should render icon slot and match snapshot', () => {
|
|||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render extra slot and match snapshot', () => {
|
test('should render extra slot correctly', () => {
|
||||||
const wrapper = mount(Cell, {
|
const wrapper = mount(Cell, {
|
||||||
slots: {
|
slots: {
|
||||||
extra: () => 'Custom Extra',
|
extra: () => 'Custom Extra',
|
||||||
|
@ -58,9 +58,7 @@ export default createComponent({
|
|||||||
return slots.right();
|
return slots.right();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (props.rightText) {
|
return <span class={bem('text')}>{props.rightText}</span>;
|
||||||
return <span class={bem('text')}>{props.rightText}</span>;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const renderNavBar = () => {
|
const renderNavBar = () => {
|
||||||
|
@ -1,29 +0,0 @@
|
|||||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
||||||
|
|
||||||
exports[`should render left/right slot and match snapshot 1`] = `
|
|
||||||
<div class="van-nav-bar van-hairline--bottom">
|
|
||||||
<div class="van-nav-bar__content">
|
|
||||||
<div class="van-nav-bar__left">Custom Left</div>
|
|
||||||
<div class="van-nav-bar__title van-ellipsis"></div>
|
|
||||||
<div class="van-nav-bar__right">Custom Right</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`should render placeholder element when using placeholder prop 1`] = `
|
|
||||||
<div class="van-nav-bar__placeholder" style="height: 50px;">
|
|
||||||
<div class="van-nav-bar van-nav-bar--fixed van-hairline--bottom">
|
|
||||||
<div class="van-nav-bar__content">
|
|
||||||
<div class="van-nav-bar__title van-ellipsis"></div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
`;
|
|
||||||
|
|
||||||
exports[`should render title slot and match snapshot 1`] = `
|
|
||||||
<div class="van-nav-bar van-hairline--bottom">
|
|
||||||
<div class="van-nav-bar__content">
|
|
||||||
<div class="van-nav-bar__title van-ellipsis">Custom Title</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
`;
|
|
21
src/nav-bar/test/__snapshots__/index.spec.js.snap
Normal file
21
src/nav-bar/test/__snapshots__/index.spec.js.snap
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||||
|
|
||||||
|
exports[`should render left slot correctly 1`] = `<div class="van-nav-bar__left">Custom Left</div>`;
|
||||||
|
|
||||||
|
exports[`should render left slot correctly 2`] = `<div class="van-nav-bar__right">Custom Right</div>`;
|
||||||
|
|
||||||
|
exports[`should render placeholder element when using placeholder prop 1`] = `
|
||||||
|
<div class="van-nav-bar__placeholder" style="height: 50px;">
|
||||||
|
<div class="van-nav-bar van-nav-bar--fixed van-hairline--bottom">
|
||||||
|
<div class="van-nav-bar__content">
|
||||||
|
<!---->
|
||||||
|
<div class="van-nav-bar__title van-ellipsis">
|
||||||
|
<!---->
|
||||||
|
</div>
|
||||||
|
<!---->
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
|
||||||
|
exports[`should render title slot correctly 1`] = `<div class="van-nav-bar__title van-ellipsis">Custom Title</div>`;
|
@ -1,30 +1,38 @@
|
|||||||
import NavBar from '..';
|
import NavBar from '..';
|
||||||
import { mount, mockGetBoundingClientRect } from '../../../test';
|
import { mount, mockGetBoundingClientRect, later } from '../../../test';
|
||||||
|
|
||||||
test('should render left/right slot and match snapshot', () => {
|
test('should render left slot correctly', () => {
|
||||||
const wrapper = mount(NavBar, {
|
const wrapper = mount(NavBar, {
|
||||||
slots: {
|
slots: {
|
||||||
left: () => 'Custom Left',
|
left: () => 'Custom Left',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(wrapper.find('.van-nav-bar__left').html()).toMatchSnapshot();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('should render left slot correctly', () => {
|
||||||
|
const wrapper = mount(NavBar, {
|
||||||
|
slots: {
|
||||||
right: () => 'Custom Right',
|
right: () => 'Custom Right',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.find('.van-nav-bar__right').html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render title slot and match snapshot', () => {
|
test('should render title slot correctly', () => {
|
||||||
const wrapper = mount(NavBar, {
|
const wrapper = mount(NavBar, {
|
||||||
slots: {
|
slots: {
|
||||||
title: () => 'Custom Title',
|
title: () => 'Custom Title',
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.find('.van-nav-bar__title').html()).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
test('should render placeholder element when using placeholder prop', () => {
|
test('should render placeholder element when using placeholder prop', async () => {
|
||||||
const restore = mockGetBoundingClientRect({ height: 50 });
|
const restore = mockGetBoundingClientRect({ height: 50 });
|
||||||
|
|
||||||
const wrapper = mount(NavBar, {
|
const wrapper = mount(NavBar, {
|
||||||
props: {
|
props: {
|
||||||
fixed: true,
|
fixed: true,
|
||||||
@ -32,8 +40,8 @@ test('should render placeholder element when using placeholder prop', () => {
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
await later();
|
||||||
expect(wrapper.html()).toMatchSnapshot();
|
expect(wrapper.html()).toMatchSnapshot();
|
||||||
|
|
||||||
restore();
|
restore();
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -66,5 +74,16 @@ test('should have safe-area-inset-top class when using safe-area-inset-top prop'
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
expect(wrapper.contains('.van-nav-bar--safe-area-inset-top')).toBeTruthy();
|
expect(
|
||||||
|
wrapper.find('.van-nav-bar--safe-area-inset-top').exists()
|
||||||
|
).toBeTruthy();
|
||||||
|
});
|
||||||
|
|
||||||
|
test('should change z-index when using z-index prop', () => {
|
||||||
|
const wrapper = mount(NavBar, {
|
||||||
|
props: {
|
||||||
|
zIndex: 100,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
expect(wrapper.element.style.zIndex).toEqual('100');
|
||||||
});
|
});
|
Loading…
x
Reference in New Issue
Block a user