umbraco-cypress-testhelpers
Version:
Test helpers for making Cypress tests for Umbraco solutions
20 lines (15 loc) • 490 B
text/typescript
import CommandBase from './commandBase';
export default class UmbracoSuccessNotification extends CommandBase {
_commandName = 'umbracoSuccessNotification';
method() {
const cy = this.cy;
const cypress = this.cypress;
cy.get('.umb-notifications__notifications > .alert-success', {
log: false,
timeout: 60000, // This is often tested after a long running operation
});
cypress.log({
displayName: 'Umbraco Notification Success ',
});
}
}