salix-front/test/cypress/integration/ticket/negative/TicketLackList.spec.js

18 lines
465 B
JavaScript
Raw Normal View History

2024-06-19 22:01:12 +00:00
/// <reference types="cypress" />
describe('Ticket Lack list', () => {
beforeEach(() => {
cy.login('developer');
cy.visit(`/#/ticket/negative`);
});
describe('Filters', () => {});
describe('Table actions', () => {
it('Open record', () => {
cy.get('.q-virtual-scroll__content > :nth-child(1) > .sticky').click();
cy.location('href').should('contain', '#/ticket/negative/5');
});
2024-06-19 22:01:12 +00:00
});
});