vant/packages/nav-bar/test/index.spec.js
2019-05-31 10:03:25 +08:00

24 lines
462 B
JavaScript

import NavBar from '..';
import { mount } from '../../../test/utils';
test('render left & right slot', () => {
const wrapper = mount(NavBar, {
scopedSlots: {
left: () => 'Custom Left',
right: () => 'Custom Right'
}
});
expect(wrapper).toMatchSnapshot();
});
test('render title slot', () => {
const wrapper = mount(NavBar, {
scopedSlots: {
title: () => 'Custom Title'
}
});
expect(wrapper).toMatchSnapshot();
});