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.
25 lines
775 B
25 lines
775 B
import React from 'react';
|
|
import TestUtils from 'react-addons-test-utils';
|
|
|
|
jest.dontMock('../components/layout/index');
|
|
jest.dontMock('../components/layout/col');
|
|
jest.dontMock('../components/layout/row');
|
|
|
|
const { Col, Row } = require('../components/layout/index');
|
|
|
|
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('col-2');
|
|
});
|
|
it('should render Row', () => {
|
|
const row = TestUtils.renderIntoDocument(
|
|
<Row></Row>
|
|
);
|
|
const rowNode = TestUtils.findRenderedDOMComponentWithTag(row, 'DIV');
|
|
expect(rowNode.className).toBe('row');
|
|
});
|
|
});
|
|
|