summaryrefslogtreecommitdiff
path: root/tools/wpt/runner.ts
diff options
context:
space:
mode:
authorMatt Mastracci <matthew@mastracci.com>2023-06-29 07:24:01 -0600
committerGitHub <noreply@github.com>2023-06-29 07:24:01 -0600
commit93b3ff017078b2c1e993457ef43af6b52e715ba6 (patch)
tree856d339ae30fef01566d5ea919d4738c1e3fa65d /tools/wpt/runner.ts
parentb6253370cc8e430c575acd3fce0da44e057eb5b9 (diff)
fix(ext/websocket): Ensure that errors are available after async response returns (#19642)
Fixes the WPT tests that test w/invalid codes. Also explicitly ignoring some h2 tests to hopefully prevent flakes. The previous changes to WebSocketStream introduced a bug where the close errors were not made available if the `pull` method was re-entrant.
Diffstat (limited to 'tools/wpt/runner.ts')
-rw-r--r--tools/wpt/runner.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/wpt/runner.ts b/tools/wpt/runner.ts
index dffeacae1..90898ae6f 100644
--- a/tools/wpt/runner.ts
+++ b/tools/wpt/runner.ts
@@ -154,7 +154,6 @@ export async function runSingleTest(
harnessStatus = JSON.parse(line.slice(5));
} else {
stderr += line + "\n";
- console.error(line);
}
}