@o-lang/resolver-tests 1.0.5 → 1.0.7
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/R-006-resolver-runtime-shape/test.json +1 -1
- package/R-007-resolver-failure-contract/test.json +1 -1
- package/R-008-resolver-input-validation/test.json +1 -1
- package/{R-009-retry-semantics → R-009-resolver-retry-semantics}/test.json +1 -1
- package/{R-010-output-contract → R-010-resolver-output-contract}/test.json +4 -2
- package/{R-011-determinism → R-011-resolver-determinism}/test.json +1 -1
- package/{R-012-side-effects → R-012-resolver-side-effects}/test.json +1 -1
- package/package.json +1 -1
- package/run.js +7 -7
|
@@ -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.",
|
|
@@ -7,7 +7,9 @@
|
|
|
7
7
|
"fixtures": {
|
|
8
8
|
"inputs": [
|
|
9
9
|
{
|
|
10
|
-
"invoke": {
|
|
10
|
+
"invoke": {
|
|
11
|
+
"action": "Notify -123456789 \"Hello from O-Lang\" using notify-telegram"
|
|
12
|
+
}
|
|
11
13
|
}
|
|
12
14
|
]
|
|
13
15
|
},
|
package/package.json
CHANGED
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({
|