mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2024-12-01 18:07:00 +00:00
1213788f9c
* 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
10 lines
295 B
TypeScript
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();
|
|
});
|