@polyengine/ct-runner 0.4.0 → 0.5.0
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/esm/run-suite.js +2 -1
- package/package.json +3 -2
package/esm/run-suite.js
CHANGED
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
// `wire_vocabulary_pinned` test) — the canonical wire types; cross-checked
|
|
11
11
|
// against expected/verify-pipeline-fixture.jsonl and
|
|
12
12
|
// expected/verify-compose-sample.jsonl (golden samples of the same format).
|
|
13
|
-
import { instantiate,
|
|
13
|
+
import { instantiate, } from "@polyengine/runtime/embedder";
|
|
14
|
+
import { Trap, ComponentException } from "@polyengine/protocol";
|
|
14
15
|
import { Context, testContextImportRecord } from "./context.js";
|
|
15
16
|
import { requireImportsResolved } from "./import-analysis.js";
|
|
16
17
|
import { applies, firstExcluding, loadTagsInventory, tagsOf, } from "./tags.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polyengine/ct-runner",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "The polyengine execution runner for component-test-results (L1) conformance suites.",
|
|
5
5
|
"homepage": "https://github.com/polymorph-components/polyengine#readme",
|
|
6
6
|
"repository": {
|
|
@@ -43,7 +43,8 @@
|
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@polyengine/
|
|
46
|
+
"@polyengine/protocol": "^0.2.2",
|
|
47
|
+
"@polyengine/runtime": "0.5.0"
|
|
47
48
|
},
|
|
48
49
|
"_generatedBy": "dnt@0.43.2"
|
|
49
50
|
}
|