ant-design/tests/layout.test.js
ddcat1115 0baef0627e docs: 调整组件导航结构 (#3758)
- Layout 更名为 Grid
2016-11-09 14:43:32 +08:00

21 lines
644 B
JavaScript

import React from 'react';
import TestUtils from 'react-addons-test-utils';
let { Col, Row } = require('../components/grid/index');
describe('Grid', function() {
it('should render Col', () => {
const col = TestUtils.renderIntoDocument(
<Col span="2"></Col>
);
const colNode = TestUtils.findRenderedDOMComponentWithTag(col, 'DIV');
expect(colNode.className).toBe('ant-col-2');
});
it('should render Row', () => {
const row = TestUtils.renderIntoDocument(
<Row></Row>
);
const rowNode = TestUtils.findRenderedDOMComponentWithTag(row, 'DIV');
expect(rowNode.className).toBe('ant-row');
});
});