saleor-dashboard/cypress/utils/attributes.js/attributeUtils.js
Karolina Rakoczy 4faafd2489
Saleor 3626 tests for attributes (#1198)
* tests for attributes

* add tests for content attribute
2021-07-09 11:43:45 +02:00

5 lines
213 B
JavaScript

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