We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a0fb3d commit 0fadf2eCopy full SHA for 0fadf2e
scripts/schema-test-coverage.mjs
@@ -48,7 +48,12 @@ class TestCoveragePlugin {
48
for (const schemaLocation in context.ast) {
49
if (
50
schemaLocation === "metaData" ||
51
- schemaLocation.includes("json-schema.org")
+ // Do not reqiure coverage of standard JSON Schema
52
+ schemaLocation.includes("json-schema.org") ||
53
+ // Do not require coverage of default $dynamicAnchor
54
+ // schemas, as they are not expected to be reached
55
+ // schemaLocation.includes("/schema/WORK-IN-PROGRESS#/$defs/schema/")
56
+ schemaLocation.endsWith("/schema/WORK-IN-PROGRESS#/$defs/schema")
57
) {
58
continue;
59
}
0 commit comments