summaryrefslogtreecommitdiff
path: root/tools/wpt/utils.ts
diff options
context:
space:
mode:
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");