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', () => {
|
2025-01-25 08:41:19 +00:00
|
|
|
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
|
|
|
});
|
|
|
|
});
|