describe("DisplayItems End-to-End Tests", () => { it(`Bulk Action Menu is Clicked: Should show a menu of items`, () => {}) it(`Item Action Menu button is Clicked: Should show a menu of items that match items found in the dataItemActions prop`, () => {}) it(`New Record is Created: A new record should be displayed in the list of records`, () => {}) it(`Existing Record Changes: The data underlying the record should reflect the change`, () => {}) it(`Existing Record is Deleted: The deleted record should no longer be in the dom`, () => {}) it(`A filter is saved: Should show another item in the list of saved filters`, () => {}) it(`The active filter changes: A different/matching set of records should be displayed in the dom`, () => {}) it(`A column is sorted: The list of data records should be shown in alphabetical order based on the column selected`, () => {}) it(`Data export is requested: A CSV file should be generated and downloaded`, () => {}) it(`Navigates to a different page: The next set of records should be shown`, () => {}) it(`Number of rows to show per page changes: The total list of records rendered should match the number proved`, () => {}) it(`'Select All' option is triggered: The checkbox for all visible records should be checked`, () => {}) it(`'Select All (filter)' option is triggered: The checkbox for all matching records should be checked`, () => {}) });