summaryrefslogtreecommitdiff
path: root/tools/wpt/runner.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/wpt/runner.ts')
-rw-r--r--tools/wpt/runner.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/wpt/runner.ts b/tools/wpt/runner.ts
index b106283d2..eae53094d 100644
--- a/tools/wpt/runner.ts
+++ b/tools/wpt/runner.ts
@@ -21,7 +21,7 @@ export async function runWithTestUtil<T>(
if (req.status == 200) {
break;
}
- } catch (err) {
+ } catch (_err) {
// do nothing if this fails
}
const passedTime = performance.now() - start;
@@ -61,7 +61,7 @@ export interface TestCaseResult {
export async function runSingleTest(
url: URL,
- options: ManifestTestOptions,
+ _options: ManifestTestOptions,
reporter: (result: TestCaseResult) => void,
): Promise<TestResult> {
const bundle = await generateBundle(url);