taskana/web/cypress/integration/history/history.spec.js

9 lines
274 B
JavaScript

context('TASKANA History', () => {
beforeEach(() => cy.loginAs('admin'));
it('should display the history', () => {
cy.visit(Cypress.env('appUrl') + '/history');
cy.get('.table > form > .table-body > .table-row').should('have.length.greaterThan', 10);
});
});