mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-21 18:01:39 +00:00
25 lines
720 B
TypeScript
25 lines
720 B
TypeScript
import { shallow } from "enzyme";
|
|
import React from "react";
|
|
import { DatabaseAccount } from "../../../Contracts/DataModels";
|
|
import { updateUserContext } from "../../../UserContext";
|
|
import { SettingsPane } from "./SettingsPane";
|
|
|
|
describe("Settings Pane", () => {
|
|
it("should render Default properly", () => {
|
|
const wrapper = shallow(<SettingsPane />);
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it("should render Gremlin properly", () => {
|
|
updateUserContext({
|
|
databaseAccount: {
|
|
properties: {
|
|
capabilities: [{ name: "EnableGremlin" }],
|
|
},
|
|
} as DatabaseAccount,
|
|
});
|
|
const wrapper = shallow(<SettingsPane />);
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|