mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-12-13 07:47:04 +00:00
6a69d3a77b
Co-authored-by: Steve Faulkner <471400+southpolesteve@users.noreply.github.com>
15 lines
416 B
TypeScript
15 lines
416 B
TypeScript
import { shallow } from "enzyme";
|
|
import React from "react";
|
|
import { UploadItemsPane } from ".";
|
|
import Explorer from "../../Explorer";
|
|
const props = {
|
|
explorer: new Explorer(),
|
|
closePanel: (): void => undefined,
|
|
};
|
|
describe("Upload Items Pane", () => {
|
|
it("should render Default properly", () => {
|
|
const wrapper = shallow(<UploadItemsPane {...props} />);
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|