testeranto 0.79.40 → 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.
@@ -464,10 +464,10 @@ const Report = () => {
464
464
  const src = test[0];
465
465
  const runtime = test[1];
466
466
  const s = [tests.buildDir, runtime].concat(src.split(".").slice(0, -1).join(".")).join("/");
467
- const exitcode = await (await fetch(config.outdir + "/" + s + "/exitcode")).text();
468
- const log = await (await fetch(config.outdir + "/" + s + "/log.txt")).text();
469
- const testresults = await (await fetch(config.outdir + "/" + s + "/tests.json")).json();
470
- const manifest = await (await fetch(config.outdir + "/" + s + "/manifest.json")).json();
467
+ const exitcode = await (await fetch(s + "/exitcode")).text();
468
+ const log = await (await fetch(s + "/log.txt")).text();
469
+ const testresults = await (await fetch(s + "/tests.json")).json();
470
+ const manifest = await (await fetch(s + "/manifest.json")).json();
471
471
  res({ src, exitcode, log, testresults, manifest });
472
472
  });
473
473
  }));