2021-03-12 12:14:18 +00:00
|
|
|
import { deleteCollection, getCollections } from "../apiRequests/Collections";
|
2021-02-18 09:00:08 +00:00
|
|
|
|
2021-03-12 12:14:18 +00:00
|
|
|
export function deleteCollectionsStartsWith(startsWith) {
|
|
|
|
cy.deleteElementsStartsWith(
|
|
|
|
deleteCollection,
|
|
|
|
getCollections,
|
|
|
|
startsWith,
|
|
|
|
"collection"
|
|
|
|
);
|
2021-02-18 09:00:08 +00:00
|
|
|
}
|