Skip to content

Commit 705053f

Browse files
committed
feat: add chunk loading error to the ignore list to prevent test failure
1 parent fffe404 commit 705053f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

cypress/support/commands.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ Cypress.on('uncaught:exception', (err, _) => {
2525
err.message.includes('The operation was aborted') ||
2626
err.message.includes('NetworkError') ||
2727
err.message.includes('path not found') ||
28-
err.message.includes('Request aborted')
28+
err.message.includes('Request aborted') ||
29+
err.message.includes('Loading chunk')
2930
)
3031
})
3132

0 commit comments

Comments
 (0)