DocSpace-buildtools/web/ASC.Web.Components/src/components/badge/badge.test.js

14 lines
243 B
JavaScript
Raw Normal View History

import React from 'react';
import { mount } from 'enzyme';
import Badge from '.';
2019-09-06 09:46:03 +00:00
describe('<Badge />', () => {
it('renders without error', () => {
const wrapper = mount(
<Badge />
);
expect(wrapper).toExist();
});
});