mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
15 lines
569 B
JavaScript
15 lines
569 B
JavaScript
|
import ResponsiveObserve, { responsiveMap } from '../responsiveObserve';
|
||
|
|
||
|
describe('Test ResponsiveObserve', () => {
|
||
|
it('test ResponsiveObserve subscribe and unsubscribe', () => {
|
||
|
const { xs } = responsiveMap;
|
||
|
const subscribeFunc = jest.fn();
|
||
|
const token = ResponsiveObserve.subscribe(subscribeFunc);
|
||
|
expect(ResponsiveObserve.matchHandlers[xs].mql.matches).toBeTruthy();
|
||
|
expect(subscribeFunc).toBeCalledTimes(1);
|
||
|
|
||
|
ResponsiveObserve.unsubscribe(token);
|
||
|
expect(ResponsiveObserve.matchHandlers[xs].mql.removeListener).toBeCalled();
|
||
|
});
|
||
|
});
|