From 284738ae7d0eceb9f1887fa6091a5ea9fd35c7bf Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Sat, 8 Oct 2022 23:58:12 +0200 Subject: [PATCH] test: list executions --- .../cypress/e2e/executions/list-executions.js | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 packages/e2e-tests/cypress/e2e/executions/list-executions.js 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