Skip to content

Commit 930a8ea

Browse files
committed
fix: stabilize ag-ui ci checks
1 parent c61929d commit 930a8ea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/ag-ui/angular/e2e/test-helpers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export function attachBrowserHygiene(page: Page): {
1111
page.on('console', (msg) => {
1212
if (msg.type() !== 'error') return;
1313
const text = msg.text();
14-
if (/PostHog|ERR_NAME_NOT_RESOLVED|license/i.test(text)) return;
14+
if (/PostHog|ERR_NAME_NOT_RESOLVED|ERR_CONNECTION_RESET|license/i.test(text)) return;
1515
consoleErrors.push(text);
1616
});
1717
page.on('pageerror', (err) => {

0 commit comments

Comments
 (0)