From dd5149695a62f26a0e578625bece4b03ed198014 Mon Sep 17 00:00:00 2001 From: Marcus Kok Date: Thu, 8 Aug 2024 09:25:40 -0400 Subject: [PATCH] update test --- web/cypress/e2e/usage-logs.cy.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/web/cypress/e2e/usage-logs.cy.ts b/web/cypress/e2e/usage-logs.cy.ts index 4163672961..cee30ba691 100644 --- a/web/cypress/e2e/usage-logs.cy.ts +++ b/web/cypress/e2e/usage-logs.cy.ts @@ -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'); }); });