diff options
author | Sean Michael Wykes <8363933+SeanWykes@users.noreply.github.com> | 2022-01-06 07:24:37 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-06 11:24:37 +0100 |
commit | d92072c656ac0e764c1588ad5825ce6a10703352 (patch) | |
tree | e2cf9c26764e73c4d4dbc2a3e7ac7e51f4dae46e /tools/wpt.ts | |
parent | 2d978a73ebc68d67672fca4df9afb8ab01fcc4f8 (diff) |
chore(wpt): add "--inspect-brk" flag to WPT runner (#13267)
Diffstat (limited to 'tools/wpt.ts')
-rwxr-xr-x | tools/wpt.ts | 3 |
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); |