ant-design/tests/layout/index.test.js
Wei Zhu d20572bdab test: demo snapshot testing (#3916)
* Run snapshot testing against all demos

* Split demo tests

* ignore coverage folder

* Upgrade antd-demo-jest

* enable cache

* intergate with coveralls.io

* Add node test

* Set worker to 2

https://github.com/facebook/jest/issues/1742

* config coverage

* Set default supportServerRender to true
2016-11-22 13:43:53 +08:00

21 lines
647 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');
});
});