DocSpace-buildtools/packages/asc-web-components/box/box.test.js
2021-02-24 17:42:09 +03:00

12 lines
225 B
JavaScript

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