/* eslint-disable */ import expect from 'expect'; import React from 'react'; import ReactDOM from 'react-dom'; import TestUtils from 'react-addons-test-utils'; import theme from '../theme.css'; import Button, { Button as RawButton } from '../Button'; const getRenderedClassName = (tree, Component) => { const rendered = TestUtils.findRenderedComponentWithType(tree, Component); return ReactDOM.findDOMNode(rendered).getAttribute('class'); }; describe('Button', () => { describe('#render', () => { it('uses flat and neutral styles by default', () => { const tree = TestUtils.renderIntoDocument(