@polyengine/ct-runner 0.5.1 → 0.6.1
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/README.md +1 -1
- package/esm/mod.js +2 -4
- package/esm/run-suite.js +0 -1
- package/package.json +3 -15
- package/types/mod.d.ts +1 -3
- package/types/run-suite.d.ts +0 -1
package/README.md
CHANGED
|
@@ -15,7 +15,7 @@ npm install @polyengine/ct-runner
|
|
|
15
15
|
import * as api from "@polyengine/ct-runner";
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
-
Entry points:
|
|
18
|
+
Entry points: `.`.
|
|
19
19
|
|
|
20
20
|
ESM only, Node >= 22.14. Documentation, examples and the embedder API contract
|
|
21
21
|
live in the [repository](https://github.com/polymorph-components/polyengine).
|
package/esm/mod.js
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
1
1
|
// ct-runner: polyengine's L3 execution runner for polymorph-test's L1
|
|
2
|
-
// suite contract (
|
|
2
|
+
// suite contract (docs/consumers.md).
|
|
3
3
|
//
|
|
4
4
|
// "Execute an L1 suite component, emit canonical results JSONL (L4)" — an
|
|
5
5
|
// introspecting host runner (ARCHITECTURE.md Rule 3): it drives
|
|
6
6
|
// `polymorph:test/tests@0.1.0` directly against a host-side `test-context`
|
|
7
7
|
// provider, never composing wasm for L2. See src/run-suite.ts for the case
|
|
8
8
|
// loop and src/context.ts for the host resource.
|
|
9
|
-
export { runSuite,
|
|
9
|
+
export { runSuite, } from "./run-suite.js";
|
|
10
10
|
export { analyzeImports, MissingImportsError, requireImportsResolved, } from "./import-analysis.js";
|
|
11
|
-
export { Context, TEST_CONTEXT_INTERFACE, testContextImportRecord } from "./context.js";
|
|
12
|
-
export { applies, collectTagsSections, firstExcluding, loadTagsInventory, parseTagsRecords, TAGS_SECTION, tagsOf, } from "./tags.js";
|
package/esm/run-suite.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@polyengine/ct-runner",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.1",
|
|
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": {
|
|
@@ -20,18 +20,6 @@
|
|
|
20
20
|
"default": "./esm/mod.js"
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
|
-
"./imports": {
|
|
24
|
-
"import": {
|
|
25
|
-
"types": "./types/import-analysis.d.ts",
|
|
26
|
-
"default": "./esm/import-analysis.js"
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
"./run": {
|
|
30
|
-
"import": {
|
|
31
|
-
"types": "./types/run-suite.d.ts",
|
|
32
|
-
"default": "./esm/run-suite.js"
|
|
33
|
-
}
|
|
34
|
-
},
|
|
35
23
|
"./package.json": "./package.json"
|
|
36
24
|
},
|
|
37
25
|
"scripts": {},
|
|
@@ -43,8 +31,8 @@
|
|
|
43
31
|
"access": "public"
|
|
44
32
|
},
|
|
45
33
|
"dependencies": {
|
|
46
|
-
"@polyengine/protocol": "^0.
|
|
47
|
-
"@polyengine/runtime": "0.
|
|
34
|
+
"@polyengine/protocol": "^0.3.1",
|
|
35
|
+
"@polyengine/runtime": "0.6.1"
|
|
48
36
|
},
|
|
49
37
|
"_generatedBy": "dnt@0.43.2"
|
|
50
38
|
}
|
package/types/mod.d.ts
CHANGED
|
@@ -1,4 +1,2 @@
|
|
|
1
|
-
export { type RunCounts, runSuite, type RunSuiteOptions,
|
|
1
|
+
export { type RunCounts, runSuite, type RunSuiteOptions, } from "./run-suite.js";
|
|
2
2
|
export { analyzeImports, type ImportAnalysis, MissingImportsError, requireImportsResolved, } from "./import-analysis.js";
|
|
3
|
-
export { Context, TEST_CONTEXT_INTERFACE, testContextImportRecord } from "./context.js";
|
|
4
|
-
export { applies, collectTagsSections, firstExcluding, loadTagsInventory, parseTagsRecords, TAGS_SECTION, type TagsInventory, tagsOf, } from "./tags.js";
|
package/types/run-suite.d.ts
CHANGED
|
@@ -120,4 +120,3 @@ export interface RunCounts {
|
|
|
120
120
|
* `fold_jsonl` and harness.mjs's `runSuiteJsonl` — both refuse it).
|
|
121
121
|
*/
|
|
122
122
|
export declare function runSuite(artifacts: ComponentArtifacts, opts: RunSuiteOptions): Promise<RunCounts>;
|
|
123
|
-
export { analyzeImports, MissingImportsError, requireImportsResolved } from "./import-analysis.js";
|