@nuggetslife/vc 0.0.28 → 0.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/W3C_CONFORMANCE.md +47 -0
- package/package.json +10 -7
- package/scripts/fetch-w3c-tests.sh +28 -0
- package/test_jsonld_crossverify.mjs +176 -0
- package/test_w3c_conformance.mjs +346 -0
- package/w3c-baseline.json +777 -0
- package/w3c-denylist.json +14 -0
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_comment": "Tests skipped because they trigger Rust-level deadlocks/infinite loops in clientffi that the JS-level per-test timeout cannot unblock. Each entry is a real bug; remove from this list as the underlying issue is fixed.",
|
|
3
|
+
"expand": [
|
|
4
|
+
"#t0126",
|
|
5
|
+
"#t0127"
|
|
6
|
+
],
|
|
7
|
+
"compact": [],
|
|
8
|
+
"flatten": [
|
|
9
|
+
"#t0020"
|
|
10
|
+
],
|
|
11
|
+
"toRdf": [],
|
|
12
|
+
"fromRdf": [],
|
|
13
|
+
"canonize": []
|
|
14
|
+
}
|