mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
52 lines
955 B
JavaScript
52 lines
955 B
JavaScript
import SubmitBar from '..';
|
|
import { mount } from '../../../test/utils';
|
|
|
|
test('submit', () => {
|
|
const submit = jest.fn();
|
|
const wrapper = mount(SubmitBar, {
|
|
context: {
|
|
props: {
|
|
price: 1
|
|
},
|
|
on: { submit }
|
|
}
|
|
});
|
|
|
|
const button = wrapper.find('.van-button');
|
|
button.trigger('click');
|
|
expect(submit).toHaveBeenCalled();
|
|
});
|
|
|
|
test('disable submit', () => {
|
|
const submit = jest.fn();
|
|
const wrapper = mount(SubmitBar, {
|
|
context: {
|
|
props: {
|
|
price: 1,
|
|
disabled: true
|
|
},
|
|
on: { submit }
|
|
}
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
// disabled
|
|
const button = wrapper.find('.van-button');
|
|
button.trigger('click');
|
|
expect(submit).toHaveBeenCalledTimes(0);
|
|
});
|
|
|
|
test('decimal length', () => {
|
|
const wrapper = mount(SubmitBar, {
|
|
context: {
|
|
props: {
|
|
price: 111,
|
|
decimalLength: 1
|
|
}
|
|
}
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|