mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
16 lines
502 B
JavaScript
16 lines
502 B
JavaScript
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 <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');
|
|
});
|
|
});
|