19 lines
628 B
JavaScript
19 lines
628 B
JavaScript
/// <reference types="cypress" />
|
|
describe('Ticket Lack list', () => {
|
|
beforeEach(() => {
|
|
cy.viewport(1280, 720);
|
|
|
|
cy.login('developer');
|
|
cy.visit('/#/ticket/negative');
|
|
});
|
|
|
|
describe('Table actions', () => {
|
|
it('should display only one row in the lack list', () => {
|
|
cy.get('[data-col-field="longName"]').first().click();
|
|
cy.dataCy('itemDescriptorProxy').should('be.visible');
|
|
cy.get('.q-virtual-scroll__content > :nth-child(1) > .sticky').click();
|
|
cy.location('href').should('contain', '#/ticket/negative/5');
|
|
});
|
|
});
|
|
});
|