diff --git a/cypress/integration/grants/test_grant_creation.js b/cypress/integration/grants/test_grant_creation.js index 807aa1ed61a..57d677cb48e 100644 --- a/cypress/integration/grants/test_grant_creation.js +++ b/cypress/integration/grants/test_grant_creation.js @@ -2,9 +2,6 @@ describe('Creating a new grant', () => { before(() => { cy.setupMetamask(); }); - after(() => { - cy.clearWindows(); - }); beforeEach(() => { cy.impersonateUser(); @@ -14,6 +11,10 @@ describe('Creating a new grant', () => { cy.logout(); }); + after(() => { + cy.clearWindows(); + }); + it('can navigate to the new grant screen', () => { cy.get('#dropdownProducts').trigger('mouseenter'); cy.get('[data-submenu=products]').find('[data-submenu=grants]').click();