diff --git a/tests/page/eval-on-selector-all.spec.ts b/tests/page/eval-on-selector-all.spec.ts
index 92fae9501b071..7ce6412b2861a 100644
--- a/tests/page/eval-on-selector-all.spec.ts
+++ b/tests/page/eval-on-selector-all.spec.ts
@@ -83,3 +83,15 @@ it('should work with bogus Array.from', async ({ page, server }) => {
const divsCount = await page.$$eval('css=div', divs => divs.length);
expect(divsCount).toBe(3);
});
+
+it.fixme('should work with broken Map', async ({ page, server }) => {
+ await page.setContent(`
+
+
+
+ `);
+ const count = await page.$$eval('role=button', els => els.length);
+ expect(count).toBe(2);
+});