diff --git a/frontend/cypress/e2e/objective.cy.ts b/frontend/cypress/e2e/objective.cy.ts index e1b2109ebb..12249566f7 100644 --- a/frontend/cypress/e2e/objective.cy.ts +++ b/frontend/cypress/e2e/objective.cy.ts @@ -143,15 +143,15 @@ describe('OKR Objective e2e tests', () => { cy.contains('Search after this objective').should('not.exist'); }); - it(`Create Objective in other quarter`, () => { + it.only(`Create Objective in other quarter`, () => { cy.getByTestId('add-objective').first().click(); - cy.fillOutObjective('Objective in quarter 2', 'safe', '2', '', false); + cy.fillOutObjective('Objective in quarter 3', 'safe', '3', '', false); - cy.contains('Objective in quarter 2').should('not.exist'); + cy.contains('Objective in quarter 3').should('not.exist'); - cy.visit('/?quarter=2'); + cy.visit('/?quarter=3'); - cy.contains('Objective in quarter 2'); + cy.contains('Objective in quarter 3'); }); it(`Edit Objective and move to other quarter`, () => {