saleor-dashboard/cypress/utils/categoryUtils.js

6 lines
207 B
JavaScript
Raw Normal View History

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