X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/57357cac58b568e2ba1445af6a44eb089026b34e..f14b66751cfaf92a2bc28331d8878789d4040e8f:/src/components/data-explorer/data-explorer.test.tsx?ds=sidebyside diff --git a/src/components/data-explorer/data-explorer.test.tsx b/src/components/data-explorer/data-explorer.test.tsx index 94c7be6d..33899c00 100644 --- a/src/components/data-explorer/data-explorer.test.tsx +++ b/src/components/data-explorer/data-explorer.test.tsx @@ -12,6 +12,7 @@ import ColumnSelector from "../column-selector/column-selector"; import DataTable from "../data-table/data-table"; import SearchInput from "../search-input/search-input"; import { TablePagination } from "@material-ui/core"; +import { MockItem } from "../data-table/data-table.test"; configure({ adapter: new Adapter() }); @@ -23,7 +24,7 @@ describe("", () => { {...mockDataExplorerProps()} contextActions={[]} onContextAction={onContextAction} - items={["Item 1"]} + items={[{ key: "1", name: "item 1" }] as MockItem[]} columns={[{ name: "Column 1", render: jest.fn(), selected: true }]} />); expect(dataExplorer.find(ContextMenu).prop("actions")).toEqual([]); dataExplorer.find(DataTable).prop("onRowContextMenu")({ @@ -38,7 +39,7 @@ describe("", () => { const onSearch = jest.fn(); const dataExplorer = mount(); expect(dataExplorer.find(SearchInput).prop("value")).toEqual("search value"); @@ -54,7 +55,7 @@ describe("", () => { columns={columns} onColumnToggle={onColumnToggle} contextActions={[]} - items={["Item 1"]} />); + items={[{ key: "1", name: "item 1" }] as MockItem[]} />); expect(dataExplorer.find(ColumnSelector).prop("columns")).toBe(columns); dataExplorer.find(ColumnSelector).prop("onColumnToggle")("columns"); expect(onColumnToggle).toHaveBeenCalledWith("columns"); @@ -65,7 +66,7 @@ describe("", () => { const onSortToggle = jest.fn(); const onRowClick = jest.fn(); const columns = [{ name: "Column 1", render: jest.fn(), selected: true }]; - const items = ["Item 1"]; + const items = [{ key: "1", name: "item 1" }] as MockItem[]; const dataExplorer = mount(", () => { expect(onRowClick).toHaveBeenCalledWith("rowClick"); }); - it("does not render , and if there is no items", () => { + it("does not render if there is no items", () => { const dataExplorer = mount(); - expect(dataExplorer.find(SearchInput)).toHaveLength(0); expect(dataExplorer.find(TablePagination)).toHaveLength(0); }); @@ -97,7 +97,7 @@ describe("", () => { const onChangeRowsPerPage = jest.fn(); const dataExplorer = mount(", () => { const mockDataExplorerProps = () => ({ columns: [], items: [], + itemsAvailable: 0, contextActions: [], searchValue: "", page: 0,