summaryrefslogtreecommitdiff
path: root/tools/wpt.ts
diff options
context:
space:
mode:
authorSean Michael Wykes <8363933+SeanWykes@users.noreply.github.com>2022-01-06 07:24:37 -0300
committerGitHub <noreply@github.com>2022-01-06 11:24:37 +0100
commitd92072c656ac0e764c1588ad5825ce6a10703352 (patch)
treee2cf9c26764e73c4d4dbc2a3e7ac7e51f4dae46e /tools/wpt.ts
parent2d978a73ebc68d67672fca4df9afb8ab01fcc4f8 (diff)
chore(wpt): add "--inspect-brk" flag to WPT runner (#13267)
Diffstat (limited to 'tools/wpt.ts')
-rwxr-xr-xtools/wpt.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/wpt.ts b/tools/wpt.ts
index d56ff34d6..b582219fa 100755
--- a/tools/wpt.ts
+++ b/tools/wpt.ts
@@ -20,6 +20,7 @@ import {
getExpectation,
getExpectFailForCase,
getManifest,
+ inspectBrk,
json,
ManifestFolder,
ManifestTestOptions,
@@ -161,6 +162,7 @@ async function run() {
test.url,
test.options,
createReportTestCase(test.expectation),
+ inspectBrk,
);
results.push({ test, result });
reportVariation(result, test.expectation);
@@ -312,6 +314,7 @@ async function update() {
test.url,
test.options,
json ? () => {} : createReportTestCase(test.expectation),
+ inspectBrk,
);
results.push({ test, result });
reportVariation(result, test.expectation);