Skip to content

Commit

Permalink
remove not.visible check
Browse files Browse the repository at this point in the history
  • Loading branch information
circlecube committed Nov 6, 2024
1 parent 8c10f84 commit 15d89d8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/cypress/integration/notifications.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ describe( 'Notifications', () => {
.should( 'be.visible' )
.and( 'contain', 'TRY NOW' )
.click();
cy.get( '.ai-sitegen-modal' ).should( 'not.visible' );
cy.url().should( 'include', 'nfd-onboarding' );
} );

Expand Down Expand Up @@ -203,7 +202,7 @@ describe( 'Notifications', () => {
.should( 'be.visible' )
.and( 'contain', 'NO, THANKS' )
.click();
cy.get( '.ai-sitegen-modal' ).should( 'not.visible' );
cy.get( '.ai-sitegen-modal' ).should( 'not.be.visible' );
} );
}

Expand Down

0 comments on commit 15d89d8

Please sign in to comment.