diff --git a/.circleci/config.yml b/.circleci/config.yml index d3a5a404daab..02786e74109f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1116,26 +1116,14 @@ workflows: context: - docker-hub-access - lastpass - filters: - branches: - only: - - TAN-2500-ci-e2e-speedup - e2e-setup-front: context: - docker-hub-access - lastpass - filters: - branches: - only: - - TAN-2500-ci-e2e-speedup - e2e-tests: context: - docker-hub-access - lastpass - filters: - branches: - only: - - TAN-2500-ci-e2e-speedup requires: - e2e-setup-db - e2e-setup-front diff --git a/front/cypress/e2e/report_builder/idea_template.cy.ts b/front/cypress/e2e/report_builder/idea_template.cy.ts index 3ba7437da4ad..08a9e94383a0 100644 --- a/front/cypress/e2e/report_builder/idea_template.cy.ts +++ b/front/cypress/e2e/report_builder/idea_template.cy.ts @@ -151,7 +151,9 @@ describe('Idea template', () => { cy.intercept('PATCH', `/web_api/v1/reports/${reportId}`).as( 'saveReportLayout' ); - cy.get('#e2e-content-builder-topbar-save').click(); + cy.get('#e2e-content-builder-topbar-save > button').click({ + force: true, + }); cy.wait('@saveReportLayout'); // Refresh page @@ -165,7 +167,7 @@ describe('Idea template', () => { }); }); - it.skip('autosaves report created from template', () => { + it('autosaves report created from template', () => { cy.apiCreateReportBuilder().then((report) => { const reportId = report.body.data.id; @@ -227,7 +229,7 @@ describe('Idea template', () => { cy.get('#e2e-create-report-button').should('exist'); }); - it.skip('autosaves report created from template', () => { + it('autosaves report created from template', () => { cy.apiCreateReportBuilder(phaseId).then((report) => { const reportId = report.body.data.id; diff --git a/front/cypress/e2e/report_builder/phase_report.cy.ts b/front/cypress/e2e/report_builder/phase_report.cy.ts index aafa5a18236f..84daec993899 100644 --- a/front/cypress/e2e/report_builder/phase_report.cy.ts +++ b/front/cypress/e2e/report_builder/phase_report.cy.ts @@ -223,7 +223,7 @@ describe('Phase report', () => { // inspired by front/cypress/e2e/report_builder/idea_template.cy.ts // "autosaves report created from template" - it.skip('is visible in current phase when created from ideation template', () => { + it('is visible in current phase when created from ideation template', () => { cy.setAdminLoginCookie(); cy.apiCreateReportBuilder(currentInfoPhaseId, true).then((report) => { const reportId = report.body.data.id; @@ -260,7 +260,7 @@ describe('Phase report', () => { }); // inspired by front/cypress/e2e/report_builder/survey_template.cy.ts - it.skip('is visible in current phase when created from survey template', () => { + it('is visible in current phase when created from survey template', () => { cy.setAdminLoginCookie(); cy.apiCreateReportBuilder(currentInfoPhaseId, true).then((report) => { const reportId = report.body.data.id;