mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-31 23:02:29 +00:00
* gating copilot with AFEC * Add enable sample DB in settings * Add enable sample DB in settings * Add enable sample DB in settings * PR comments
25 lines
752 B
TypeScript
25 lines
752 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 explorer={null} />);
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
|
|
it("should render Gremlin properly", () => {
|
|
updateUserContext({
|
|
databaseAccount: {
|
|
properties: {
|
|
capabilities: [{ name: "EnableGremlin" }],
|
|
},
|
|
} as DatabaseAccount,
|
|
});
|
|
const wrapper = shallow(<SettingsPane explorer={null} />);
|
|
expect(wrapper).toMatchSnapshot();
|
|
});
|
|
});
|