Skip to content

Commit

Permalink
Avoid CI failures by ignoring errors that aren't a problem
Browse files Browse the repository at this point in the history
  • Loading branch information
thewilkybarkid committed Feb 27, 2025
1 parent bd1fc57 commit 5d4a558
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions integration/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ const appFixtures: Fixtures<Record<never, never>, Record<never, never>, Playwrig
const errors: Array<string> = []

context.on('weberror', error => {
if (error.error().message === 'ResizeObserver loop completed with undelivered notifications.') {
return // https://github.com/observablehq/framework/pull/1923
}

errors.push(error.error().message)
})

Expand Down

0 comments on commit 5d4a558

Please sign in to comment.