fix the tour page getting close in explore page (#19874)

This commit is contained in:
Ashish Gupta 2025-02-19 14:48:25 +05:30 committed by GitHub
parent 3be1a40c05
commit fe300b78b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -190,6 +190,9 @@ test.describe('User with Admin Roles', () => {
await redirectToHomePage(adminPage); await redirectToHomePage(adminPage);
await settingClick(adminPage, GlobalSettingOptions.USERS); await settingClick(adminPage, GlobalSettingOptions.USERS);
await adminPage.waitForLoadState('networkidle'); await adminPage.waitForLoadState('networkidle');
await adminPage.waitForSelector('.user-list-table [data-testid="loader"]', {
state: 'detached',
});
await softDeleteUserProfilePage( await softDeleteUserProfilePage(
adminPage, adminPage,
user.responseData.name, user.responseData.name,

View File

@ -67,7 +67,7 @@ const Tour = ({ steps }: { steps: TourSteps[] }) => {
} }
maskColor="#302E36" maskColor="#302E36"
playTour={isTourOpen} playTour={isTourOpen}
stepWaitTimer={300} stepWaitTimer={900}
steps={steps} steps={steps}
onRequestClose={handleRequestClose} onRequestClose={handleRequestClose}
onRequestSkip={handleModalSubmit} onRequestSkip={handleModalSubmit}