
* remove classes in shipping & products utils * remove classes * add const * remove getters in ProductsUtils * remove getters in Utils * remove getters in Utils
10 lines
251 B
JavaScript
10 lines
251 B
JavaScript
import { deleteCollection, getCollections } from "../apiRequests/Collections";
|
|
|
|
export function deleteCollectionsStartsWith(startsWith) {
|
|
cy.deleteElementsStartsWith(
|
|
deleteCollection,
|
|
getCollections,
|
|
startsWith,
|
|
"collection"
|
|
);
|
|
}
|