saleor-dashboard/cypress/utils/navigationUtils.js
Karolina Rakoczy f1b313ea69
Saleor 3873 tests for navigation (#1234)
* add test for creating menu

* tests for navigation

* fix imports
2021-07-15 15:31:05 +03:00

5 lines
180 B
JavaScript

import { deleteMenu, getMenus } from "../apiRequests/Menu";
export function deleteMenusStartsWith(startsWith) {
cy.deleteElementsStartsWith(deleteMenu, getMenus, startsWith);
}