testeranto 0.219.11 → 0.219.12

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.
@@ -25,7 +25,7 @@ const nodeBuildCommand = (fpath) => {
25
25
  if (externalTests) {
26
26
  console.log("external tests", process.cwd());
27
27
  // return `cat node_modules/testeranto/src/server/runtimes/node/esbuild.ts`
28
- return `yarn tsx node_modules/testeranto/src/server/runtimes/node/node.ts ${fpath}`;
28
+ return `yarn tsx node_modules/testeranto/src/server/runtimes/node/node.ts ${fpath} testeranto/testeranto.yml`;
29
29
  // return `cat node_modules/testeranto/src/server/runtimes/node/node.ts`
30
30
  // return ["sh", "-c", "cd /workspace && javac -cp \".:lib/*\" src/server/runtimes/java/main.java && java -cp \"src/server/runtimes/java:.\" main"]
31
31
  }
@@ -41,7 +41,8 @@ const esbuild_2 = __importDefault(require("./esbuild"));
41
41
  const common_1 = require("../common");
42
42
  console.log(`[NODE BUILDER] hello: ${process.argv}`);
43
43
  const nodeConfigPath = process.argv[2];
44
- const testName = process.argv[3] || "allTests";
44
+ const projectConfigPath = process.argv[3];
45
+ const testName = 'idk';
45
46
  console.log(`[NODE BUILDER] nodeConfig: ${nodeConfigPath}`);
46
47
  // run esbuild in watch mode using esbuildConfigs. Write to fs the bundle and metafile
47
48
  async function startBundling(config) {