diff --git a/private/playwright/appSnapshot.ts b/private/playwright/appSnapshot.ts index 0a60512d4..5b0382644 100644 --- a/private/playwright/appSnapshot.ts +++ b/private/playwright/appSnapshot.ts @@ -12,7 +12,7 @@ export const getAppSnapshot = async ({ url }: AppSnapshotOptions) => { const errors: string[] = []; page.on('console', (msg) => { - if (msg.type() === 'error') { + if (msg.type() === 'error' && !msg.location().url.includes('favicon.ico')) { errors.push(msg.text()); }