test: list executions

This commit is contained in:
Ali BARIN
2022-10-08 23:58:12 +02:00
parent b1459cbf3b
commit 284738ae7d

View File

@@ -0,0 +1,20 @@
/// <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');
});
});