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