X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ab08a8e2200157caaf73828b8459a641fff0d1e9..936570facff4156f83d1b0fcbb0bedd1126efc03:/src/components/dropdown-menu/dropdown-menu.test.tsx diff --git a/src/components/dropdown-menu/dropdown-menu.test.tsx b/src/components/dropdown-menu/dropdown-menu.test.tsx index 33964692..32039939 100644 --- a/src/components/dropdown-menu/dropdown-menu.test.tsx +++ b/src/components/dropdown-menu/dropdown-menu.test.tsx @@ -4,7 +4,7 @@ import * as React from "react"; import { shallow, configure } from "enzyme"; -import DropdownMenu from "./dropdown-menu"; +import { DropdownMenu } from "./dropdown-menu"; import * as Adapter from 'enzyme-adapter-react-16'; import { MenuItem, IconButton, Menu } from "@material-ui/core"; import { PaginationRightArrowIcon } from "../icon/icon"; @@ -30,13 +30,13 @@ describe("", () => { it("opens on menu icon click", () => { const dropdownMenu = shallow(} />); dropdownMenu.find(IconButton).simulate("click", {currentTarget: {}}); - expect(dropdownMenu.state().anchorEl).toBeDefined(); + expect((dropdownMenu.state() as any).anchorEl).toBeDefined(); }); - + it("closes on menu click", () => { const dropdownMenu = shallow(} />); dropdownMenu.find(Menu).simulate("click", {currentTarget: {}}); - expect(dropdownMenu.state().anchorEl).toBeUndefined(); + expect((dropdownMenu.state() as any).anchorEl).toBeUndefined(); }); -}); \ No newline at end of file +});