You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.4 KiB
49 lines
1.4 KiB
import React, { useState } from 'react';
|
|
import Sider from '../Sider';
|
|
import { render, fireEvent } from '../../../tests/utils';
|
|
|
|
const Content = () => {
|
|
const [breakpoint, setBreakpoint] = useState('sm');
|
|
const toggleBreakpoint = () => {
|
|
if (breakpoint === 'sm') {
|
|
setBreakpoint('lg');
|
|
} else {
|
|
setBreakpoint('sm');
|
|
}
|
|
};
|
|
return (
|
|
<Sider breakpoint={breakpoint as any}>
|
|
<button type="button" id="toggle" onClick={toggleBreakpoint}>
|
|
Toggle
|
|
</button>
|
|
</Sider>
|
|
);
|
|
};
|
|
|
|
it('Dynamic breakpoint in Sider component', () => {
|
|
const add = jest.fn();
|
|
const remove = jest.fn();
|
|
const newMatch = jest.spyOn(window, 'matchMedia').mockReturnValue({
|
|
matches: true,
|
|
addEventListener: add,
|
|
removeEventListener: remove,
|
|
} as any);
|
|
|
|
const { container } = render(<Content />);
|
|
|
|
// Record here since React 18 strict mode will render twice at first mount
|
|
const originCallTimes = newMatch.mock.calls.length;
|
|
expect(originCallTimes <= 2).toBeTruthy();
|
|
|
|
// subscribe at first
|
|
expect(add.mock.calls).toHaveLength(originCallTimes);
|
|
expect(remove.mock.calls).toHaveLength(originCallTimes - 1);
|
|
|
|
fireEvent.click(container.querySelector('#toggle') as Element);
|
|
|
|
expect(newMatch.mock.calls).toHaveLength(originCallTimes + 1);
|
|
expect(add.mock.calls).toHaveLength(originCallTimes + 1);
|
|
expect(remove.mock.calls).toHaveLength(originCallTimes);
|
|
|
|
jest.restoreAllMocks();
|
|
});
|
|
|