saleor-dashboard/cypress/utils/categoryUtils.js
Karolina Rakoczy f68410b7cb
Saleor 3711 tests for categories and collections (#1204)
* tests for collections

* all tests for categories
2021-07-15 14:17:56 +03:00

5 lines
207 B
JavaScript

import { deleteCategory, getCategories } from "../apiRequests/Category";
export function deleteCategoriesStartsWith(startsWith) {
cy.deleteElementsStartsWith(deleteCategory, getCategories, startsWith);
}