import React from 'react';
import { render, mount } from 'enzyme';
import Spin from '..';
describe('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 = render();
expect(wrapper).toMatchSnapshot();
});
it('should be controlled by spinning', () => {
const wrapper = mount();
expect(wrapper.instance().state.spinning).toBe(false);
wrapper.setProps({ spinning: true });
expect(wrapper.instance().state.spinning).toBe(true);
});
});