summaryrefslogtreecommitdiff
path: root/tools/wpt/utils.ts
diff options
context:
space:
mode:
authorLuca Casonato <lucacasonato@yahoo.com>2021-06-03 01:12:28 +0200
committerGitHub <noreply@github.com>2021-06-03 01:12:28 +0200
commitb2a4c2e4f650f84a4f22c655a6b504b00fe0f72f (patch)
tree6e2a3dc4629533198c3e3a41e9e1b1fea52c9d75 /tools/wpt/utils.ts
parentb4ae243da8846d7ba0a5dd63942f90c857b744ca (diff)
build: collect wpt results as json (#10823)
Diffstat (limited to 'tools/wpt/utils.ts')
-rw-r--r--tools/wpt/utils.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/wpt/utils.ts b/tools/wpt/utils.ts
index 6d982068b..cb454300b 100644
--- a/tools/wpt/utils.ts
+++ b/tools/wpt/utils.ts
@@ -38,7 +38,8 @@ export type ManifestTestVariation = [
options: ManifestTestOptions,
];
export interface ManifestTestOptions {
- name?: string;
+ // deno-lint-ignore camelcase
+ script_metadata: [string, string][];
}
const MANIFEST_PATH = join(ROOT_PATH, "./tools/wpt/manifest.json");