@o-lang/resolver-tests 1.0.5 → 1.0.6

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "test_id": "R-006-runtime-shape",
2
+ "test_id": "R-006-resolver-runtime-shape",
3
3
  "protocol_version": "1.1",
4
4
  "category": "resolver-runtime",
5
5
  "description": "Ensures resolver exports a callable function.",
@@ -1,5 +1,5 @@
1
1
  {
2
- "test_id": "R-007-failure-contract",
2
+ "test_id": "R-007-resolver-failure-contract",
3
3
  "protocol_version": "1.1",
4
4
  "category": "resolver-runtime",
5
5
  "description": "Ensures any thrown failure code is declared in the resolver's failure contract.",
@@ -1,5 +1,5 @@
1
1
  {
2
- "test_id": "R-008-input-validation",
2
+ "test_id": "R-008-resolver-input-validation",
3
3
  "protocol_version": "1.1",
4
4
  "category": "resolver-runtime",
5
5
  "description": "Ensures resolver rejects invocations missing required inputs.",
@@ -1,5 +1,5 @@
1
1
  {
2
- "test_id": "R-009-retry-semantics",
2
+ "test_id": "R-009-resolver-retry-semantics",
3
3
  "protocol_version": "1.1",
4
4
  "category": "resolver-runtime",
5
5
  "description": "Ensures resolver retry behavior does not exceed declared retry limits when failures occur.",
@@ -1,5 +1,5 @@
1
1
  {
2
- "test_id": "R-010-output-contract",
2
+ "test_id": "R-010-resolver-output-contract",
3
3
  "protocol_version": "1.1",
4
4
  "category": "resolver-runtime",
5
5
  "description": "Ensures resolver output conforms to its declared output contract.",
@@ -1,5 +1,5 @@
1
1
  {
2
- "test_id": "R-011-determinism",
2
+ "test_id": "R-011-resolver-determinism",
3
3
  "protocol_version": "1.1",
4
4
  "category": "resolver-runtime",
5
5
  "description": "Ensures resolver produces deterministic output for identical inputs.",
@@ -1,5 +1,5 @@
1
1
  {
2
- "test_id": "R-012-side-effects",
2
+ "test_id": "R-012-resolver-side-effects",
3
3
  "protocol_version": "1.1",
4
4
  "category": "resolver-runtime",
5
5
  "description": "Ensures resolver does not mutate global state or environment unexpectedly.",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@o-lang/resolver-tests",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "Official O-Lang Resolver Test Harness — locked single entrypoint",
5
5
  "main": "run.js",
6
6
  "type": "commonjs",
package/run.js CHANGED
@@ -73,13 +73,13 @@ const { generateBadge } = require("./lib/badge");
73
73
  ? opts.suites
74
74
  : [
75
75
  "R-005-resolver-metadata-contract",
76
- "R-006-runtime-shape",
77
- "R-007-failure-contract",
78
- "R-008-input-validation",
79
- "R-009-retry-semantics",
80
- "R-010-output-contract",
81
- "R-011-determinism",
82
- "R-012-side-effects"
76
+ "R-006-resolver-runtime-shape",
77
+ "R-007-resolver-failure-contract",
78
+ "R-008-resolver-input-validation",
79
+ "R-009-resolver-retry-semantics",
80
+ "R-010-resolver-output-contract",
81
+ "R-011-resolver-determinism",
82
+ "R-012-resolver-side-effects"
83
83
  ];
84
84
 
85
85
  const result = await runAllTests({