Skip to content

Commit

Permalink
Upgrade to PTF 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
karesti committed May 13, 2024
1 parent c1f29a0 commit 44efe25
Show file tree
Hide file tree
Showing 6 changed files with 274 additions and 252 deletions.
6 changes: 5 additions & 1 deletion cypress/e2e/3_cache-crud-wizard.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ describe('Cache Creation Wizard', () => {
});

it('successfully creates cache with all building options', () => {
cy.on("uncaught:exception", (err, runnable) => {
cy.log(err.message);
return false;
});
//go to create cache page
cy.get('[data-cy=createCacheButton]').click();
cy.get('#cache-name').click();
Expand Down Expand Up @@ -234,6 +238,6 @@ describe('Cache Creation Wizard', () => {

cy.contains(`Cache ${cacheName} deleted.`);
cy.get('.pf-v5-c-alert__action > .pf-v5-c-button').click(); //Closing alert popup.
cy.get('aCache').should('not.exist'); //Checking that deleted cache is not visible
cy.get(cacheName).should('not.exist'); //Checking that deleted cache is not visible
}
});
Loading

0 comments on commit 44efe25

Please sign in to comment.