2021-06-24 13:56:33 -05:00

11 lines
291 B
TypeScript

import { shallow } from "enzyme";
import React from "react";
import { LoadQueryPane } from "./LoadQueryPane";
describe("Load Query Pane", () => {
it("should render Default properly", () => {
const wrapper = shallow(<LoadQueryPane />);
expect(wrapper).toMatchSnapshot();
});
});