Files
automatisch/packages/e2e-tests/cypress/e2e/executions/list-executions.js
2022-11-05 23:57:33 +01:00

21 lines
370 B
JavaScript

/// <reference types="cypress" />
describe('Executions page', () => {
before(() => {
cy.login();
cy.og('executions-page-drawer-link').click();
});
after(() => {
cy.logout();
});
it('displays executions', () => {
cy.og('executions-loader').should('not.exist');
cy.og('execution-row').should('exist');
cy.ss('Executions');
});
});