mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
40 lines
741 B
JavaScript
40 lines
741 B
JavaScript
import Switch from '..';
|
|
import { mount } from '../../../test/utils';
|
|
|
|
test('emit event', () => {
|
|
const input = jest.fn();
|
|
const change = jest.fn();
|
|
const wrapper = mount(Switch, {
|
|
context: {
|
|
on: {
|
|
input,
|
|
change
|
|
}
|
|
}
|
|
});
|
|
wrapper.trigger('click');
|
|
|
|
expect(input).toHaveBeenCalledWith(true);
|
|
expect(change).toHaveBeenCalledWith(true);
|
|
});
|
|
|
|
test('disabled', () => {
|
|
const input = jest.fn();
|
|
const change = jest.fn();
|
|
const wrapper = mount(Switch, {
|
|
context: {
|
|
on: {
|
|
input,
|
|
change
|
|
}
|
|
},
|
|
propsData: {
|
|
disabled: true
|
|
}
|
|
});
|
|
wrapper.trigger('click');
|
|
|
|
expect(input).toHaveBeenCalledTimes(0);
|
|
expect(change).toHaveBeenCalledTimes(0);
|
|
});
|