saleor-dashboard/cypress/utils/attributes.js~HEAD

6 lines
210 B
Text
Raw Normal View History

import { deleteAttribute, getAttributes } from "../apiRequests/Attribute";
export function deleteAttributesStartsWith(startsWith) {
cy.deleteElementsStartsWith(deleteAttribute, getAttributes, startsWith);
}