Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Naseem77 committed Jan 27, 2025
1 parent a7e3b99 commit c719d03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/tests/settingsConfig.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ test.describe('Settings Tests', () => {
test(`@admin Modify maxInfoQueries via UI validation via API: Input value: 999`, async () => {
const settingsConfigPage = await browser.createNewPage(SettingsConfigPage, urls.settingsUrl)
await settingsConfigPage.modifyRoleValue(roles.maxInfoQueries, "999")
await new Promise(resolve => { setTimeout(resolve, 1000) });
await new Promise(resolve => { setTimeout(resolve, 3000) });
const apiCall = new ApiCalls()
let value = String((await apiCall.getSettingsRoleValue(roles.maxInfoQueries)).config[1]);
await settingsConfigPage.clickOnToastCloseBtn();
Expand Down

0 comments on commit c719d03

Please sign in to comment.