cosmos-explorer/src/Explorer/OpenFullScreen.test.tsx
Armando Trejo Oliver 1213788f9c
Remove share-link feature (#1345)
* Remove share-link feature

Cosmos DB supports sharing access to an account data using AAD/RBAC now so this feature is unnecessary.

* Fix format issues

* Fix unit tests

* undo package changes
2022-10-20 10:58:37 -07:00

10 lines
295 B
TypeScript

import "@testing-library/jest-dom";
import { render, screen } from "@testing-library/react";
import React from "react";
import { OpenFullScreen } from "./OpenFullScreen";
it("renders the correct URLs", () => {
render(<OpenFullScreen />);
expect(screen.getByText("Open")).toBeDefined();
});