test: enable previously skipped tests in route and ticket list
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2025-03-26 13:23:56 +01:00
parent 0eda125579
commit 522e900e55
2 changed files with 5 additions and 7 deletions

View File

@ -118,8 +118,8 @@ describe('Route extended list', () => {
cy.validateContent(selector, value);
});
});
// task https://redmine.verdnatura.es/issues/8814
xit('Should clone selected route and add ticket', () => {
it('Should clone selected route and add ticket', () => {
cy.get(selectors.firstRowSelectCheckBox).click();
cy.get(selectors.cloneBtn).click();
cy.dataCy('Starting date_inputDate').type('01-01-2001');
@ -146,8 +146,7 @@ describe('Route extended list', () => {
cy.readFile(`${downloadsFolder}/${fileName}`).should('exist');
});
// task https://redmine.verdnatura.es/issues/8814
xit('Should mark as served the selected route', () => {
it('Should mark as served the selected route', () => {
cy.get(selectors.lastRowSelectCheckBox).click();
cy.get(selectors.markServedBtn).click();

View File

@ -1,5 +1,5 @@
/// <reference types="cypress" />
describe.skip('TicketList', () => {
describe('TicketList', () => {
const firstRow = 'tbody.q-virtual-scroll__content tr:nth-child(1)';
beforeEach(() => {
@ -35,8 +35,7 @@ describe.skip('TicketList', () => {
cy.get('.summaryBody').should('exist');
});
// task https://redmine.verdnatura.es/issues/8779
xit('filter client and create ticket', () => {
it('filter client and create ticket', () => {
cy.intercept('GET', /\/api\/Tickets\/filter/).as('ticketSearchbar');
searchResults();
cy.wait('@ticketSearchbar');