test: list executions
This commit is contained in:
20
packages/e2e-tests/cypress/e2e/executions/list-executions.js
Normal file
20
packages/e2e-tests/cypress/e2e/executions/list-executions.js
Normal 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');
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user