Refactor: update keyPairListComponent.spec.ts to improve test reliability and performance (#4874)

Refactor keyPairListComponent.spec.ts to improve test reliability and performance
This commit is contained in:
anovazzi1 2024-11-28 13:03:13 -03:00 committed by GitHub
commit 89e2224158
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,7 +25,9 @@ test(
while (modalCount === 0) {
await page.getByText("New Flow", { exact: true }).click();
await page.waitForTimeout(3000);
await page.waitForSelector('[data-testid="modal-title"]', {
timeout: 3000,
});
modalCount = await page.getByTestId("modal-title")?.count();
}
await page.waitForSelector('[data-testid="blank-flow"]', {
@ -35,7 +37,9 @@ test(
await page.getByTestId("sidebar-search-input").click();
await page.getByTestId("sidebar-search-input").fill("amazon bedrock");
await page.waitForTimeout(1000);
await page.waitForSelector('[data-testid="modelsAmazon Bedrock"]', {
timeout: 3000,
});
await page
.getByTestId("modelsAmazon Bedrock")