import React from 'react'; import { shallow } from 'enzyme'; import Spin from '..'; describe('Spin', () => { it('should only affect the spin element when set style to a nested xx', () => { const wrapper = shallow(
content
); expect(wrapper.find('.ant-spin-nested-loading').at(0).prop('style')).toBe(null); expect(wrapper.find('.ant-spin').at(0).prop('style').background).toBe('red'); }); });