You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import React from 'react';
|
|
|
|
import { shallow, render } from 'enzyme';
|
|
|
|
import Spin from '..';
|
|
|
|
|
|
|
|
describe('Spin', () => {
|
|
|
|
it('should only affect the spin element when set style to a nested <Spin>xx</Spin>', () => {
|
|
|
|
const wrapper = shallow(
|
|
|
|
<Spin style={{ background: 'red' }}>
|
|
|
|
<div>content</div>
|
|
|
|
</Spin>
|
|
|
|
);
|
|
|
|
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');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render custom indicator when it\'s set', () => {
|
|
|
|
const customIndicator = <div className="custom-indicator" />;
|
|
|
|
const wrapper = render(
|
|
|
|
<Spin indicator={customIndicator} />
|
|
|
|
);
|
|
|
|
expect(wrapper).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render with delay when it\'s mounted with spinning=true and delay', () => {
|
|
|
|
const wrapper = shallow(
|
|
|
|
<Spin spinning delay={500} />
|
|
|
|
);
|
|
|
|
expect(wrapper.find('.ant-spin').at(0).hasClass('ant-spin-spinning')).toEqual(false);
|
|
|
|
});
|
|
|
|
});
|