mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
51da9c637c
* fix jest test for typescript * fix components detect tc * remove console
24 lines
714 B
JavaScript
24 lines
714 B
JavaScript
import React from 'react';
|
|
import TestUtils from 'react-addons-test-utils';
|
|
import { wrap } from 'react-stateless-wrapper';
|
|
|
|
let { Col, Row } = require('../components/layout/index');
|
|
Col = wrap(Col);
|
|
|
|
describe('Layout', 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');
|
|
});
|
|
});
|