diff --git a/packages/e2e-tests/cypress/e2e/executions/list-executions.js b/packages/e2e-tests/cypress/e2e/executions/list-executions.js new file mode 100644 index 00000000..66fcb026 --- /dev/null +++ b/packages/e2e-tests/cypress/e2e/executions/list-executions.js @@ -0,0 +1,20 @@ +/// + +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'); + }); +}); \ No newline at end of file