mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-05-03 15:04:04 +01:00
11 lines
291 B
TypeScript
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();
|
|
});
|
|
});
|