testeranto 0.219.3 → 0.219.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.
@@ -20,8 +20,9 @@ const externalTests = true;
20
20
  export const nodeBuildCommand = (fpath) => {
21
21
  if (externalTests) {
22
22
  console.log("external tests");
23
- return `yarn tsx /workspace/node_modules/testeranto/src/server/runtimes/node/node.ts /workspace/${fpath}`;
24
- // return `/workspace/node_modules/testeranto/src/server/runtimes/node/node.ts`
23
+ // return `yarn tsx /workspace/node_modules/testeranto/src/server/runtimes/node/node.ts /workspace/${fpath}`;
24
+ return `ls node_modules/testeranto/src`;
25
+ // return ["sh", "-c", "cd /workspace && javac -cp \".:lib/*\" src/server/runtimes/java/main.java && java -cp \"src/server/runtimes/java:.\" main"]
25
26
  }
26
27
  else {
27
28
  console.log("not external tests");
@@ -1,7 +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
+ console.log("hello server");
5
5
  readline.emitKeypressEvents(process.stdin);
6
6
  if (process.stdin.isTTY)
7
7
  process.stdin.setRawMode(true);