Fix tests
parent
caa87cb6f2
commit
c0dc894cbe
@ -0,0 +1,26 @@
|
||||
jest.dontMock('../components/button/button');
|
||||
|
||||
import React from 'react';
|
||||
import TestUtils from 'react-addons-test-utils';
|
||||
const Button = require('../components/button/button');
|
||||
|
||||
describe('Button', function() {
|
||||
let button;
|
||||
let buttonNode;
|
||||
|
||||
beforeEach(() => {
|
||||
button = TestUtils.renderIntoDocument(
|
||||
<Button>Follow</Button>
|
||||
);
|
||||
buttonNode = TestUtils.findRenderedDOMComponentWithTag(button, 'button');
|
||||
});
|
||||
|
||||
it('should set the type to button by default', () => {
|
||||
expect(buttonNode.type).toBe('button');
|
||||
});
|
||||
|
||||
it('should set the default className to button', () => {
|
||||
expect(buttonNode.className).toBe('ant-btn');
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue