/* eslint-disable jest/no-conditional-expect */
import React from 'react';
import TestRenderer from 'react-test-renderer';
import Button from '../src';
describe('', () => {
it('Should output a Button', () => {
const component = TestRenderer.create(
);
let tree = component.toJSON();
expect(tree).toMatchSnapshot();
if (tree) {
expect(tree.type).toBe('button');
expect(tree.props.className).toBe('w-btn w-btn-default w-btn-danger');
expect(tree.children).toHaveLength(2);
if (tree.children) {
expect(tree.children[0].type).toBe('img');
expect(tree.children[0].children).toBeNull();
}
}
});
});