Skip to content

Commit 3cbd6e5

Browse files
authored
ignore favicon (#1510)
1 parent c31bd4d commit 3cbd6e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

private/playwright/appSnapshot.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const getAppSnapshot = async ({ url }: AppSnapshotOptions) => {
1212
const errors: string[] = [];
1313

1414
page.on('console', (msg) => {
15-
if (msg.type() === 'error') {
15+
if (msg.type() === 'error' && !msg.location().url.includes('favicon.ico')) {
1616
errors.push(msg.text());
1717
}
1818

0 commit comments

Comments
 (0)