import React from 'react'; import { mount } from 'enzyme'; // eslint-disable-next-line import/no-named-as-default import { render } from '@testing-library/react'; import Spin from '..'; import mountTest from '../../../tests/shared/mountTest'; import rtlTest from '../../../tests/shared/rtlTest'; describe('Spin', () => { mountTest(Spin); rtlTest(Spin); it('should only affect the spin element when set style to a nested xx', () => { const wrapper = mount(
content
, ); expect(wrapper.find('.ant-spin-nested-loading').at(0).prop('style')).toBeFalsy(); expect(wrapper.find('.ant-spin').at(0).prop('style').background).toBe('red'); }); it("should render custom indicator when it's set", () => { const customIndicator =
; const wrapper = mount(); expect(wrapper.render()).toMatchSnapshot(); }); it('should be controlled by spinning', () => { const { container, rerender } = render(); expect(container.querySelector('.ant-spin-spinning')).toBeFalsy(); rerender(); expect(container.querySelector('.ant-spin-spinning')).toBeTruthy(); }); it('if indicator set null should not be render default indicator', () => { const wrapper = mount(); expect(wrapper.render()).toMatchSnapshot(); }); it('should support static method Spin.setDefaultIndicator', () => { Spin.setDefaultIndicator(); const wrapper = mount(); expect(wrapper.render()).toMatchSnapshot(); Spin.setDefaultIndicator(null); }); it('should render 0', () => { const wrapper = mount({0}); expect(wrapper.find('.ant-spin-container').at(0).text()).toBe('0'); }); });