Skip to content

Commit

Permalink
Merge pull request #371 from newfold-labs/update/migration-test
Browse files Browse the repository at this point in the history
update migration tests
  • Loading branch information
circlecube authored Nov 6, 2024
2 parents 62a76eb + a09dd53 commit de7afe1
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions tests/cypress/integration/Home/migration.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ describe(
cy.get( '.nfd-justify-start', { timeout: customCommandTimeout } )
.scrollIntoView()
.should( 'exist' );
} );
} );

it( 'Verify if One last thing to do... section shows', () => {
cy.get( '#next-steps-section', { timeout: customCommandTimeout } )
.scrollIntoView()
.should( 'exist' );
} );
} );

it( 'Verify when update nameserver clicked', () => {
cy.intercept( APIList.update_nameserver ).as( 'events' );
Expand All @@ -57,7 +57,9 @@ describe(
cy.get( '.help-container', {
timeout: customCommandTimeout,
} ).should( 'be.visible' );
cy.get( '.close-button' ).click();
cy.get( '.help-container button.close-button', {
timeout: 5000,
} ).click();
} );

it( 'Verify when connect domain to site clicked', () => {
Expand All @@ -72,7 +74,9 @@ describe(
cy.get( '.help-container', {
timeout: customCommandTimeout,
} ).should( 'be.visible' );
cy.get( '.close-button' ).click();
cy.get( '.help-container button.close-button', {
timeout: 5000,
} ).click();
} );

it( 'Verify when continue with store setup clicked', () => {
Expand Down

0 comments on commit de7afe1

Please sign in to comment.