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( ); const colNode = TestUtils.findRenderedDOMComponentWithTag(col, 'DIV'); expect(colNode.className).toBe('col-2'); }); it('should render Row', () => { const row = TestUtils.renderIntoDocument( ); const rowNode = TestUtils.findRenderedDOMComponentWithTag(row, 'DIV'); expect(rowNode.className).toBe('row'); }); });