umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
11 lines (9 loc) • 324 B
text/typescript
import CommandBase from './commandBase';
export default class UmbracoEnsureMultipleDocumentTypeNameNotExists extends CommandBase {
_commandName = 'umbracoEnsureMultipleDocumentTypeNameNotExists';
method(names) {
names.forEach(function (value) {
cy.umbracoEnsureDocumentTypeNameNotExists(value);
});
}
}