testeranto 0.218.0 → 0.219.2

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.
@@ -22,10 +22,12 @@ const nodeDockerComposeFile = (config, container_name, fpath) => {
22
22
  exports.nodeDockerComposeFile = nodeDockerComposeFile;
23
23
  const externalTests = true;
24
24
  const nodeBuildCommand = (fpath) => {
25
- if (externalTests) {
25
+ if (false) {
26
+ console.log("external tests");
26
27
  return `yarn tsx node_modules/testeranto/src/server/runtimes/node/node.ts /workspace/${fpath}`;
27
28
  }
28
29
  else {
30
+ console.log("not external tests");
29
31
  return `yarn tsx src/server/runtimes/node/node.ts /workspace/${fpath}`;
30
32
  }
31
33
  };
@@ -7,6 +7,7 @@ exports.Server = void 0;
7
7
  const fs_1 = __importDefault(require("fs"));
8
8
  const readline_1 = __importDefault(require("readline"));
9
9
  const Server_Docker_1 = require("./Server_Docker");
10
+ console.log("hello server");
10
11
  readline_1.default.emitKeypressEvents(process.stdin);
11
12
  if (process.stdin.isTTY)
12
13
  process.stdin.setRawMode(true);