testeranto 0.220.3 → 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 `yarn tsx
|
|
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
|
@@ -52,7 +52,10 @@ export const nodeBuildCommand = (projectConfigPath: string, nodeConfigPath: stri
|
|
|
52
52
|
|
|
53
53
|
export const nodeBddCommand = (fpath: string, nodeConfigPath: string) => {
|
|
54
54
|
// return `node ${fpath.split('.').slice(0, -1).concat('mjs').join('.')} /workspace/node.js`;
|
|
55
|
-
return `yarn tsx
|
|
55
|
+
return `yarn tsx testeranto/bundles/allTests/node/src/ts/Calculator.test.mjs /workspace/${nodeConfigPath}`;
|
|
56
56
|
// return `node ${fpath.split('.').slice(0, -1).concat('mjs').join('.')} /workspace/${nodeConfigPath}`;
|
|
57
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/
|
|
58
61
|
}
|