testeranto 0.220.2 → 0.220.4
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.
|
@@ -98,7 +98,7 @@ var nodeBuildCommand = (projectConfigPath, nodeConfigPath, testName) => {
|
|
|
98
98
|
return `yarn tsx node_modules/testeranto/src/server/runtimes/node/node.ts /workspace/testeranto/testeranto.ts /workspace/${nodeConfigPath} ${testName}`;
|
|
99
99
|
};
|
|
100
100
|
var nodeBddCommand = (fpath, nodeConfigPath) => {
|
|
101
|
-
return `node
|
|
101
|
+
return `yarn tsx testeranto/bundles/allTests/node/src/ts/Calculator.test.mjs /workspace/${nodeConfigPath}`;
|
|
102
102
|
};
|
|
103
103
|
|
|
104
104
|
// src/server/runtimes/python/docker.ts
|
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.220.
|
|
5
|
+
"version": "0.220.4",
|
|
6
6
|
"engines": {
|
|
7
7
|
"node": ">=20.19.0",
|
|
8
8
|
"vscode": "^1.60.0"
|
|
@@ -384,4 +384,4 @@
|
|
|
384
384
|
"cucumber",
|
|
385
385
|
"ATDD"
|
|
386
386
|
]
|
|
387
|
-
}
|
|
387
|
+
}
|
|
@@ -31,8 +31,10 @@ export const nodeDockerComposeFile = (
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
export const nodeBuildCommand = (projectConfigPath: string, nodeConfigPath: string, testName: string) => {
|
|
34
|
-
|
|
35
34
|
return `yarn tsx node_modules/testeranto/src/server/runtimes/node/node.ts /workspace/testeranto/testeranto.ts /workspace/${nodeConfigPath} ${testName}`;
|
|
35
|
+
|
|
36
|
+
// node testeranto/bundles/allTests/node/src/ts/Calculator.test.mjs /workspace/testeranto/runtimes/node/node.mjs
|
|
37
|
+
|
|
36
38
|
// const externalTests = true;
|
|
37
39
|
// if (externalTests) {
|
|
38
40
|
// console.log("external tests", testName)
|
|
@@ -50,7 +52,10 @@ export const nodeBuildCommand = (projectConfigPath: string, nodeConfigPath: stri
|
|
|
50
52
|
|
|
51
53
|
export const nodeBddCommand = (fpath: string, nodeConfigPath: string) => {
|
|
52
54
|
// return `node ${fpath.split('.').slice(0, -1).concat('mjs').join('.')} /workspace/node.js`;
|
|
53
|
-
|
|
54
|
-
return `node ${fpath.split('.').slice(0, -1).concat('mjs').join('.')} /workspace/${nodeConfigPath}`;
|
|
55
|
+
return `yarn tsx testeranto/bundles/allTests/node/src/ts/Calculator.test.mjs /workspace/${nodeConfigPath}`;
|
|
56
|
+
// return `node ${fpath.split('.').slice(0, -1).concat('mjs').join('.')} /workspace/${nodeConfigPath}`;
|
|
55
57
|
// return `yarn tsx ${fpath} /workspace/${nodeConfigPath}`;
|
|
58
|
+
|
|
59
|
+
// "yarn tsx node_modules/testeranto/src/server/runtimes/node/node.ts /workspace/testeranto/testeranto.ts /workspace/testeranto/runtimes/node/node.mjs nodetests"
|
|
60
|
+
// Cannot find module '/workspace/testeranto/bundles/allTests/node/src/ts/Calculator.test.ts' imported from /workspace/
|
|
56
61
|
}
|