Skip to content

Commit 720d3e0

Browse files
authored
chore: Remove console error from screenshot-area (#3375)
1 parent d5baaed commit 720d3e0

File tree

2 files changed

+14
-21
lines changed

2 files changed

+14
-21
lines changed

pages/utils/screenshot-area.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default function ScreenshotArea({
3838

3939
// Reporting the excessive height as a console error makes integration and screenshot tests for this page fail.
4040
if (isExceedingHeightWarning) {
41-
console.error(isExceedingHeightWarning);
41+
console.warn(isExceedingHeightWarning);
4242
}
4343

4444
return (

src/__integ__/screenshot-area.test.ts

+13-20
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,16 @@ class ScreenshotAreaPage extends BasePageObject {
1717
}
1818
}
1919

20-
test('shows warning message when the page height exceeds the limit and hides when it does not', async () => {
21-
try {
22-
await useBrowser(async browser => {
23-
const page = new ScreenshotAreaPage(browser);
24-
await browser.url('#light/utils/screenshot-area-warning');
25-
await page.waitForVisible('.screenshot-area');
26-
await expect(page.isWarningDisplayed()).resolves.toBe(false);
27-
await page.clickAddItems();
28-
await expect(page.isWarningDisplayed()).resolves.toBe(true);
29-
await page.clickRemoveItems();
30-
await expect(page.isWarningDisplayed()).resolves.toBe(false);
31-
})();
32-
} catch (error: any) {
33-
if (error.message.includes('Unexpected errors in browser console')) {
34-
// The console errors are expected in this test
35-
} else {
36-
throw error;
37-
}
38-
}
39-
});
20+
test(
21+
'shows warning message when the page height exceeds the limit and hides when it does not',
22+
useBrowser(async browser => {
23+
const page = new ScreenshotAreaPage(browser);
24+
await browser.url('#light/utils/screenshot-area-warning');
25+
await page.waitForVisible('.screenshot-area');
26+
await expect(page.isWarningDisplayed()).resolves.toBe(false);
27+
await page.clickAddItems();
28+
await expect(page.isWarningDisplayed()).resolves.toBe(true);
29+
await page.clickRemoveItems();
30+
await expect(page.isWarningDisplayed()).resolves.toBe(false);
31+
})
32+
);

0 commit comments

Comments
 (0)