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.
@@ -18,10 +18,12 @@ export const nodeDockerComposeFile = (config, container_name, fpath) => {
18
18
  };
19
19
  const externalTests = true;
20
20
  export const nodeBuildCommand = (fpath) => {
21
- if (externalTests) {
21
+ if (false) {
22
+ console.log("external tests");
22
23
  return `yarn tsx node_modules/testeranto/src/server/runtimes/node/node.ts /workspace/${fpath}`;
23
24
  }
24
25
  else {
26
+ console.log("not external tests");
25
27
  return `yarn tsx src/server/runtimes/node/node.ts /workspace/${fpath}`;
26
28
  }
27
29
  };
@@ -1,6 +1,7 @@
1
1
  import fs from "fs";
2
2
  import readline from "readline";
3
3
  import { Server_Docker } from "./Server_Docker";
4
+ console.log("hello server");
4
5
  readline.emitKeypressEvents(process.stdin);
5
6
  if (process.stdin.isTTY)
6
7
  process.stdin.setRawMode(true);