UNPKG

umbraco-cypress-testhelpers

Version:

Test helpers for making Cypress tests for Umbraco solutions

20 lines (15 loc) 382 B
import CommandBase from './commandBase'; export default class SaveTemplate extends CommandBase { commandName = 'saveTemplate'; method(template) { const cy = this.cy; if (template == null) { return; } return cy.umbracoApiRequest( this.relativeBackOfficePath + '/backoffice/UmbracoApi/Template/PostSave', 'POST', template, ); } }