Skip to content

Commit 82a322e

Browse files
committed
refactor(spy-on-event): remove warning
1 parent a3931bf commit 82a322e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

core/src/utils/test/playwright/page/utils/spy-on-event.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ export const spyOnEvent = async (page: E2EPage, eventName: string): Promise<Even
2828
input.style.pointerEvents = 'none';
2929
document.body.appendChild(input);
3030

31-
// Add console warning to indicate presence of hidden input.
32-
console.warn('[Ionic Warning]: Hidden input for ionBlur added to the page for Playwright testing.');
33-
3431
// Clean up the element when the page is unloaded.
3532
window.addEventListener('unload', () => {
3633
input.remove();

0 commit comments

Comments
 (0)