mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
18 lines
345 B
JavaScript
18 lines
345 B
JavaScript
import SwitchCell from '..';
|
|
import { mount } from '../../../test/utils';
|
|
|
|
test('change event', () => {
|
|
const onChange = jest.fn();
|
|
const wrapper = mount(SwitchCell, {
|
|
context: {
|
|
on: {
|
|
change: onChange
|
|
}
|
|
}
|
|
});
|
|
|
|
wrapper.find('.van-switch').trigger('click');
|
|
|
|
expect(onChange).toHaveBeenCalledWith(true);
|
|
});
|