We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeb8de3 commit beb99b6Copy full SHA for beb99b6
1 file changed
tests/directActivation.e2e.spec.ts
@@ -36,7 +36,9 @@ test.describe('directActivation Sites - Should automatically add badges', () =>
36
const url = 'https://github.com/itenium-be/starify-links';
37
const page = await goToWhitelistedPage(context, url);
38
39
- await expect(page.locator('img[src*="shields.io/github/stars"]').first()).toBeVisible();
+ page.on('console', msg => console.log(`[browser] ${msg.text()}`));
40
+
41
+ await expect(page.locator('img[src*="shields.io/github/stars"]').first()).toBeVisible({timeout: 30_000});
42
43
const mikeImg = getBadgeLocator(page, 'itenium-be/Mi-Ke');
44
await expect(mikeImg).toHaveCount(1);
0 commit comments