5 lines
217 B
JavaScript
5 lines
217 B
JavaScript
import { deleteCollection, getCollections } from "../apiRequests/Collections";
|
|
|
|
export function deleteCollectionsStartsWith(startsWith) {
|
|
cy.deleteElementsStartsWith(deleteCollection, getCollections, startsWith);
|
|
}
|