We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c31bd4d commit 3cbd6e5Copy full SHA for 3cbd6e5
1 file changed
private/playwright/appSnapshot.ts
@@ -12,7 +12,7 @@ export const getAppSnapshot = async ({ url }: AppSnapshotOptions) => {
12
const errors: string[] = [];
13
14
page.on('console', (msg) => {
15
- if (msg.type() === 'error') {
+ if (msg.type() === 'error' && !msg.location().url.includes('favicon.ico')) {
16
errors.push(msg.text());
17
}
18
0 commit comments