testeranto 0.79.41 → 0.79.42

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.
@@ -80963,10 +80963,10 @@ ${latestSubscriptionCallbackError.current.stack}
80963
80963
  const src = test[0];
80964
80964
  const runtime = test[1];
80965
80965
  const s = [tests.buildDir, runtime].concat(src.split(".").slice(0, -1).join(".")).join("/");
80966
- const exitcode = await (await fetch(config.outdir + s + "/exitcode")).text();
80967
- const log2 = await (await fetch(config.outdir + s + "/log.txt")).text();
80968
- const testresults = await (await fetch(config.outdir + s + "/tests.json")).json();
80969
- const manifest = await (await fetch(config.outdir + s + "/manifest.json")).json();
80966
+ const exitcode = await (await fetch(s + "/exitcode")).text();
80967
+ const log2 = await (await fetch(s + "/log.txt")).text();
80968
+ const testresults = await (await fetch(s + "/tests.json")).json();
80969
+ const manifest = await (await fetch(s + "/manifest.json")).json();
80970
80970
  res({ src, exitcode, log: log2, testresults, manifest });
80971
80971
  });
80972
80972
  }));
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "testeranto",
3
3
  "description": "teeny tiny tightly-typed typescript tests",
4
- "version": "0.79.41",
4
+ "version": "0.79.42",
5
5
  "engines": {
6
6
  "node": "18.18.0"
7
7
  },
@@ -959,10 +959,10 @@ const Report = () => {
959
959
  const src: string = test[0];
960
960
  const runtime: IRunTime = test[1];
961
961
  const s: string = [tests.buildDir, runtime as string].concat(src.split(".").slice(0, - 1).join(".")).join("/");
962
- const exitcode = await (await fetch(config.outdir + s + "/exitcode")).text()
963
- const log = await (await fetch(config.outdir + s + "/log.txt")).text()
964
- const testresults = await (await fetch(config.outdir + s + "/tests.json")).json()
965
- const manifest = await (await fetch(config.outdir + s + "/manifest.json")).json()
962
+ const exitcode = await (await fetch(s + "/exitcode")).text()
963
+ const log = await (await fetch(s + "/log.txt")).text()
964
+ const testresults = await (await fetch(s + "/tests.json")).json()
965
+ const manifest = await (await fetch(s + "/manifest.json")).json()
966
966
 
967
967
  res({ src, exitcode, log, testresults, manifest })
968
968
  })