ant-design/components/spin/__tests__/index.test.js

39 lines
1.1 KiB
JavaScript
Raw Normal View History

2017-01-27 14:27:18 +08:00
import React from 'react';
import { render, mount } 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 = mount(
2017-01-27 14:27:18 +08:00
<Spin style={{ background: 'red' }}>
<div>content</div>
2018-12-07 20:02:01 +08:00
</Spin>,
2017-01-27 14:27:18 +08:00
);
2018-12-07 20:02:01 +08:00
expect(
wrapper
.find('.ant-spin-nested-loading')
.at(0)
.prop('style'),
2018-12-18 11:02:09 +08:00
).toBeFalsy();
2018-12-07 20:02:01 +08:00
expect(
wrapper
.find('.ant-spin')
.at(0)
.prop('style').background,
).toBe('red');
2017-01-27 14:27:18 +08:00
});
2018-12-07 20:02:01 +08:00
it("should render custom indicator when it's set", () => {
const customIndicator = <div className="custom-indicator" />;
2018-12-07 20:02:01 +08:00
const wrapper = render(<Spin indicator={customIndicator} />);
expect(wrapper).toMatchSnapshot();
});
it('should be controlled by spinning', () => {
2018-12-07 20:02:01 +08:00
const wrapper = mount(<Spin spinning={false} />);
expect(wrapper.instance().state.spinning).toBe(false);
wrapper.setProps({ spinning: true });
expect(wrapper.instance().state.spinning).toBe(true);
});
2017-01-27 14:27:18 +08:00
});