mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
39 lines
755 B
JavaScript
39 lines
755 B
JavaScript
import SubmitBar from '..';
|
|
import { mount } from '../../../test/utils';
|
|
|
|
test('submit', () => {
|
|
const submit = jest.fn();
|
|
const wrapper = mount(SubmitBar, {
|
|
context: {
|
|
props: {
|
|
price: 0.01
|
|
},
|
|
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: 0.01,
|
|
disabled: true
|
|
},
|
|
on: { submit }
|
|
}
|
|
});
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
// disabled
|
|
const button = wrapper.find('.van-button');
|
|
button.trigger('click');
|
|
expect(submit).toHaveBeenCalledTimes(0);
|
|
});
|