Skip to content

Commit

Permalink
fix duplicate scorring
Browse files Browse the repository at this point in the history
  • Loading branch information
kcinay055679 committed Nov 4, 2024
1 parent c9ee258 commit eb56e7f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontend/cypress/e2e/duplicated-scoring.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ describe('e2e test for scoring adjustment on objective duplicate', () => {
});

it('Create ordinal checkin and validate value of scoring component', () => {
cy.intercept('POST', '**/keyresults').as('createKeyresult');
cy.createOrdinalKeyresult('stretch keyresult for testing', null);
cy.wait('@createKeyresult');
cy.contains('stretch keyresult for testing');
cy.getByTestId('keyresult').get(':contains("stretch keyresult for testing")').last().click();
cy.getByTestId('add-check-in').click();
cy.getByTestId(`stretch-radio`).click();
Expand Down

0 comments on commit eb56e7f

Please sign in to comment.