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.
21 lines
647 B
21 lines
647 B
9 years ago
|
import React from 'react';
|
||
9 years ago
|
import TestUtils from 'react-addons-test-utils';
|
||
8 years ago
|
let { Col, Row } = require('../../components/grid/index');
|
||
9 years ago
|
|
||
8 years ago
|
describe('Grid', function() {
|
||
9 years ago
|
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');
|
||
|
});
|
||
9 years ago
|
});
|