mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-02-18 18:44:42 -05:00
chore: change
This commit is contained in:
@@ -115,13 +115,11 @@ test.describe("Marketplace – Basic Functionality", () => {
|
||||
const searchTerm = page.getByText("DummyInput").first();
|
||||
await isVisible(searchTerm);
|
||||
|
||||
await page
|
||||
.locator('[data-testid="store-card"]')
|
||||
.first()
|
||||
.waitFor({ state: "visible", timeout: 15000 });
|
||||
|
||||
const results = await marketplacePage.getSearchResultsCount(page);
|
||||
expect(results).toBeGreaterThan(0);
|
||||
await expect
|
||||
.poll(() => marketplacePage.getSearchResultsCount(page), {
|
||||
timeout: 15000,
|
||||
})
|
||||
.toBeGreaterThan(0);
|
||||
|
||||
console.log("Complete search flow works correctly test passed ✅");
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user