2022-06-22 14:57:09 +08:00
|
|
|
import React from 'react';
|
2019-06-25 12:08:32 +08:00
|
|
|
import Switch from '..';
|
2017-11-19 01:41:40 +08:00
|
|
|
import focusTest from '../../../tests/shared/focusTest';
|
2019-08-26 22:53:20 +08:00
|
|
|
import mountTest from '../../../tests/shared/mountTest';
|
2020-01-02 19:10:16 +08:00
|
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
2022-10-31 10:22:38 +08:00
|
|
|
import { waitFakeTimer, fireEvent, render } from '../../../tests/utils';
|
2022-06-22 14:57:09 +08:00
|
|
|
import { resetWarned } from '../../_util/warning';
|
2017-11-19 01:41:40 +08:00
|
|
|
|
|
|
|
describe('Switch', () => {
|
2020-04-26 22:33:36 +08:00
|
|
|
focusTest(Switch, { refFocus: true });
|
2019-08-26 22:53:20 +08:00
|
|
|
mountTest(Switch);
|
2020-01-02 19:10:16 +08:00
|
|
|
rtlTest(Switch);
|
2018-11-12 12:38:02 +08:00
|
|
|
|
|
|
|
it('should has click wave effect', async () => {
|
2022-10-31 10:22:38 +08:00
|
|
|
jest.useFakeTimers();
|
2022-07-01 11:55:03 +08:00
|
|
|
const { container } = render(<Switch />);
|
|
|
|
fireEvent.click(container.querySelector('.ant-switch')!);
|
2022-10-31 10:22:38 +08:00
|
|
|
await waitFakeTimer();
|
2022-07-01 11:55:03 +08:00
|
|
|
expect(container.querySelector('button')!.getAttribute('ant-click-animating')).toBe('true');
|
2022-10-31 10:22:38 +08:00
|
|
|
jest.clearAllTimers();
|
|
|
|
jest.useRealTimers();
|
2018-11-12 12:38:02 +08:00
|
|
|
});
|
2019-08-27 18:29:20 +08:00
|
|
|
|
|
|
|
it('warning if set `value`', () => {
|
|
|
|
resetWarned();
|
|
|
|
|
|
|
|
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
2022-07-01 11:55:03 +08:00
|
|
|
const props = { value: true } as any;
|
|
|
|
render(<Switch {...props} />);
|
2019-08-27 18:29:20 +08:00
|
|
|
expect(errorSpy).toHaveBeenCalledWith(
|
2020-04-14 16:48:23 +08:00
|
|
|
'Warning: [antd: Switch] `value` is not a valid prop, do you mean `checked`?',
|
2019-08-27 18:29:20 +08:00
|
|
|
);
|
|
|
|
errorSpy.mockRestore();
|
|
|
|
});
|
2017-11-19 01:41:40 +08:00
|
|
|
});
|