From 154aa1dbf609f2cd4b4c24c787df11236a0a767a Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Thu, 4 May 2023 16:47:23 -0400 Subject: [PATCH] test(popover): add missing screenshot function (#27399) Issue number: N/A --------- ## What is the current behavior? A skipped popover test was missing a screenshot function ## What is the new behavior? - Added missing screenshot function ## Does this introduce a breaking change? - [ ] Yes - [x] No ## Other information --- core/src/components/popover/test/size/popover.e2e.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/components/popover/test/size/popover.e2e.ts b/core/src/components/popover/test/size/popover.e2e.ts index 438db99bdc..a8f10462e2 100644 --- a/core/src/components/popover/test/size/popover.e2e.ts +++ b/core/src/components/popover/test/size/popover.e2e.ts @@ -27,7 +27,7 @@ configs({ modes: ['ios'], directions: ['ltr'] }).forEach(({ title, screenshot, c await expect(page).toHaveScreenshot(screenshot(`popover-size`)); // test this one separately since it would overlap others - await screenshotPopover(page, 'no-event-trigger', 'size'); + await screenshotPopover(page, screenshot, 'no-event-trigger', 'size'); }); }); });