summaryrefslogtreecommitdiff
path: root/tools/wpt.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/wpt.ts')
-rwxr-xr-xtools/wpt.ts5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/wpt.ts b/tools/wpt.ts
index 8c9d0a447..07f6b6ba9 100755
--- a/tools/wpt.ts
+++ b/tools/wpt.ts
@@ -329,7 +329,10 @@ function assertAllExpectationsHaveTests(
for (const [key, expectation] of Object.entries(parentExpectation)) {
const path = `${parent}/${key}`;
if (!filter.matches(path)) continue;
- if (typeof expectation == "boolean" || Array.isArray(expectation)) {
+ if (
+ (typeof expectation == "boolean" || Array.isArray(expectation)) &&
+ key !== "ignore"
+ ) {
if (!tests.has(path)) {
missingTests.push(path);
}