Skip to content

Commit

Permalink
chore(e2e): ignore known errors (#1177)
Browse files Browse the repository at this point in the history
The error happens specific to 53_islands which keeps loading after the
initial render. I'm not sure if there's a better way to fix this.
  • Loading branch information
dai-shi authored Jan 22, 2025
1 parent 65f86e4 commit 93132d2
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions e2e/examples-smoke.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,14 @@ for (const cwd of examples) {
// ignore this error
return;
}
if (
/Error: The render was aborted by the server without a reason\..*\/examples\/53_islands\//s.test(
`${data}`,
)
) {
// ignore this error
return;
}
error(`${port} stderr: ${data}`);
console.error(`${port} stderr: `, `${data}`);
});
Expand Down

0 comments on commit 93132d2

Please sign in to comment.