Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcusk19 committed Aug 8, 2024
1 parent 7fc48ab commit dd51496
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions web/cypress/e2e/usage-logs.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,5 +227,18 @@ describe('Usage Logs Export', () => {
'Change visibility for repository projectquay/testrepo to private',
)
.should('not.exist');
cy.get('[id="log-filter-input"]').click();
cy.focused().clear();
cy.get('[id="log-filter-input"]').type('change');
cy.get('table')
.contains(
'td',
'Change visibility for repository projectquay/testrepo to private',
)
.scrollIntoView()
.should('be.visible');
cy.get('table')
.contains('td', 'Create Repository projectquay/testrepo')
.should('not.exist');
});
});

0 comments on commit dd51496

Please sign in to comment.