mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
35 lines
857 B
TypeScript
35 lines
857 B
TypeScript
|
import { renderHook } from '../../../tests/utils';
|
||
|
import useAnimateConfig from '../hooks/useAnimateConfig';
|
||
|
|
||
|
describe('Tabs.Animated', () => {
|
||
|
it('boolean: false', () => {
|
||
|
const { result } = renderHook(() => useAnimateConfig('test', false));
|
||
|
|
||
|
expect(result.current).toEqual({
|
||
|
inkBar: false,
|
||
|
tabPane: false,
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('boolean: true', () => {
|
||
|
const { result } = renderHook(() => useAnimateConfig('test', true));
|
||
|
|
||
|
expect(result.current).toEqual({
|
||
|
inkBar: true,
|
||
|
tabPane: false,
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('config', () => {
|
||
|
const { result } = renderHook(() => useAnimateConfig('test', { inkBar: false, tabPane: true }));
|
||
|
|
||
|
expect(result.current).toEqual({
|
||
|
inkBar: false,
|
||
|
tabPane: true,
|
||
|
tabPaneMotion: expect.objectContaining({
|
||
|
motionName: 'test-switch',
|
||
|
}),
|
||
|
});
|
||
|
});
|
||
|
});
|