DocSpace-client/web/ASC.Web.Components/src/components/box/box.test.js

14 lines
237 B
JavaScript
Raw Normal View History

import React from 'react';
import { mount } from 'enzyme';
import Box from '.';
describe('<Box />', () => {
it('renders without error', () => {
const wrapper = mount(
<Box />
);
expect(wrapper).toExist();
});
});