X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/bccb9ca5151f041d8c8b73098a3e1874023e3efa..838af71bfe460c7f5a03121acf8a4d239893cdac:/src/components/data-explorer/data-explorer.test.tsx diff --git a/src/components/data-explorer/data-explorer.test.tsx b/src/components/data-explorer/data-explorer.test.tsx index 616a9c12..a34ab1c8 100644 --- a/src/components/data-explorer/data-explorer.test.tsx +++ b/src/components/data-explorer/data-explorer.test.tsx @@ -11,6 +11,8 @@ 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 { ProjectIcon } from '../icon/icon'; +import { DefaultView } from '../default-view/default-view'; configure({ adapter: new Adapter() }); @@ -30,7 +32,7 @@ describe("", () => { it("communicates with ", () => { const onColumnToggle = jest.fn(); - const columns = [{ name: "Column 1", render: jest.fn(), selected: true }]; + const columns = [{ name: "Column 1", render: jest.fn(), selected: true, configurable: true }]; const dataExplorer = mount(", () => { const onFiltersChange = jest.fn(); const onSortToggle = jest.fn(); const onRowClick = jest.fn(); - const columns = [{ name: "Column 1", render: jest.fn(), selected: true }]; + const columns = [{ name: "Column 1", render: jest.fn(), selected: true, configurable: true }]; const items = [{ name: "item 1" }]; const dataExplorer = mount(", () => { expect(onRowClick).toHaveBeenCalledWith("rowClick"); }); - it("does not render if there is no items", () => { + it("does not render if there is no items", () => { const dataExplorer = mount(); - expect(dataExplorer.find(TablePagination)).toHaveLength(0); + expect(dataExplorer.find(DataTable)).toHaveLength(0); + expect(dataExplorer.find(DefaultView)).toHaveLength(1); }); it("communicates with ", () => { @@ -100,6 +103,7 @@ const mockDataExplorerProps = () => ({ searchValue: "", page: 0, rowsPerPage: 0, + rowsPerPageOptions: [0], onSearch: jest.fn(), onFiltersChange: jest.fn(), onSortToggle: jest.fn(), @@ -108,5 +112,7 @@ const mockDataExplorerProps = () => ({ onColumnToggle: jest.fn(), onChangePage: jest.fn(), onChangeRowsPerPage: jest.fn(), - onContextMenu: jest.fn() + onContextMenu: jest.fn(), + defaultIcon: ProjectIcon, + defaultMessages: ['testing'], });