testeranto 0.217.0 → 0.218.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.
@@ -97,11 +97,12 @@ var nodeDockerComposeFile = (config, container_name, fpath) => {
97
97
  command: nodeBuildCommand(fpath)
98
98
  };
99
99
  };
100
- var externalTests = true;
101
100
  var nodeBuildCommand = (fpath) => {
102
- if (externalTests) {
101
+ if (false) {
102
+ console.log("external tests");
103
103
  return `yarn tsx node_modules/testeranto/src/server/runtimes/node/node.ts /workspace/${fpath}`;
104
104
  } else {
105
+ console.log("not external tests");
105
106
  return `yarn tsx src/server/runtimes/node/node.ts /workspace/${fpath}`;
106
107
  }
107
108
  };
@@ -1647,6 +1648,7 @@ ${x}
1647
1648
  };
1648
1649
 
1649
1650
  // src/server/serverClasees/Server.ts
1651
+ console.log("hello server");
1650
1652
  readline.emitKeypressEvents(process.stdin);
1651
1653
  if (process.stdin.isTTY) process.stdin.setRawMode(true);
1652
1654
  var Server = class extends Server_Docker {
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.217.0",
5
+ "version": "0.218.1",
6
6
  "engines": {
7
7
  "node": ">=20.19.0",
8
8
  "vscode": "^1.60.0"
@@ -27,7 +27,7 @@ const externalTests = true;
27
27
 
28
28
  export const nodeBuildCommand = (fpath: string) => {
29
29
 
30
- if (externalTests) {
30
+ if (false) {
31
31
  console.log("external tests")
32
32
  return `yarn tsx node_modules/testeranto/src/server/runtimes/node/node.ts /workspace/${fpath}`;
33
33
  } else {
@@ -4,6 +4,8 @@ import { IBuiltConfig, IConfig } from "../../Types";
4
4
  import { IMode } from "../types";
5
5
  import { Server_Docker } from "./Server_Docker";
6
6
 
7
+ console.log("hello server")
8
+
7
9
  readline.emitKeypressEvents(process.stdin);
8
10
  if (process.stdin.isTTY) process.stdin.setRawMode(true);
9
11