2017-01-27 14:27:18 +08:00
|
|
|
import React from 'react';
|
2018-02-14 12:30:31 +08:00
|
|
|
import { shallow, render } from 'enzyme';
|
2017-01-27 14:27:18 +08:00
|
|
|
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');
|
|
|
|
});
|
2017-11-04 12:05:25 +08:00
|
|
|
|
|
|
|
it('should render custom indicator when it\'s set', () => {
|
|
|
|
const customIndicator = <div className="custom-indicator" />;
|
2018-02-14 12:30:31 +08:00
|
|
|
const wrapper = render(
|
2017-11-04 12:05:25 +08:00
|
|
|
<Spin indicator={customIndicator} />
|
|
|
|
);
|
2018-02-14 12:30:31 +08:00
|
|
|
expect(wrapper).toMatchSnapshot();
|
2017-11-04 12:05:25 +08:00
|
|
|
});
|
2017-01-27 14:27:18 +08:00
|
|
|
});
|