testeranto 0.219.5 → 0.219.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/dist/common/src/server/runtimes/node/esbuild.js +1 -1
- package/dist/common/tsconfig.common.tsbuildinfo +1 -1
- package/dist/module/src/server/runtimes/node/esbuild.js +1 -1
- package/dist/module/tsconfig.module.tsbuildinfo +1 -1
- package/dist/prebuild/server/runtimes/node/node.mjs +1 -1
- package/dist/types/tsconfig.types.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/server/runtimes/node/docker.ts +3 -1
- package/src/server/runtimes/node/esbuild.ts +4 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "testeranto",
|
|
3
3
|
"displayName": "Testeranto",
|
|
4
4
|
"description": "the Dockerized, AI powered, BDD test framework for polyglot projects",
|
|
5
|
-
"version": "0.219.
|
|
5
|
+
"version": "0.219.7",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=20.19.0",
|
|
8
8
|
"vscode": "^1.60.0"
|
|
@@ -414,4 +414,4 @@
|
|
|
414
414
|
"cucumber",
|
|
415
415
|
"ATDD"
|
|
416
416
|
]
|
|
417
|
-
}
|
|
417
|
+
}
|
|
@@ -29,7 +29,9 @@ export const nodeBuildCommand = (fpath: string) => {
|
|
|
29
29
|
|
|
30
30
|
if (externalTests) {
|
|
31
31
|
console.log("external tests", process.cwd())
|
|
32
|
-
return `
|
|
32
|
+
return `cat node_modules/testeranto/src/server/runtimes/node/esbuild.ts`
|
|
33
|
+
// return `yarn tsx node_modules/testeranto/src/server/runtimes/node/node.ts ${fpath}`;
|
|
34
|
+
// return `cat node_modules/testeranto/src/server/runtimes/node/node.ts`
|
|
33
35
|
// return ["sh", "-c", "cd /workspace && javac -cp \".:lib/*\" src/server/runtimes/java/main.java && java -cp \"src/server/runtimes/java:.\" main"]
|
|
34
36
|
} else {
|
|
35
37
|
console.log("not external tests")
|
|
@@ -13,12 +13,15 @@ export default (
|
|
|
13
13
|
config: ITestconfig,
|
|
14
14
|
testName: string
|
|
15
15
|
): BuildOptions => {
|
|
16
|
+
|
|
17
|
+
console.log(config)
|
|
18
|
+
|
|
16
19
|
// Get entry points from config, or use a default
|
|
17
20
|
let entrypoints: string[] = [];
|
|
18
21
|
if (config.node?.tests) {
|
|
19
22
|
entrypoints = Object.keys(config.node.tests);
|
|
20
23
|
} else {
|
|
21
|
-
|
|
24
|
+
|
|
22
25
|
throw "config.node.tests should exist"
|
|
23
26
|
// Fallback to a reasonable default
|
|
24
27
|
// entrypoints = ["./example/Calculator.test.ts"];
|