test: enable previously skipped tests in route and ticket list
gitea/salix-front/pipeline/head This commit looks good
Details
gitea/salix-front/pipeline/head This commit looks good
Details
This commit is contained in:
parent
0eda125579
commit
522e900e55
|
@ -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();
|
||||
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Reference in New Issue