Skip to content

Commit

Permalink
clean up check-in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kcinay055679 committed Nov 4, 2024
1 parent eb56e7f commit d096d82
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions frontend/cypress/e2e/checkIn.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ describe('OKR Check-in e2e tests', () => {
cy.contains('Letztes Check-in (' + getCurrentDate() + ')');
});

it.only('Should generate checkin list', () => {
it('Should generate checkin list', () => {
cy.getByTestId('objective').first().getByTestId('add-keyResult').first().click();
cy.getByTestId('submit').should('be.disabled');

Expand Down Expand Up @@ -361,7 +361,5 @@ function getCurrentDate() {
}

function checkForAttribute(title: string, value: string) {
// cy.contains(title).parent().should('contain', value);
cy.contains(title);
cy.contains(value);
cy.get('mat-dialog-container').contains(value).parent().should('contain', title);
}

0 comments on commit d096d82

Please sign in to comment.