testeranto 0.79.42 → 0.79.44
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(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();
|
|
80966
|
+
const exitcode = await (await fetch("/docs/" + s + "/exitcode")).text();
|
|
80967
|
+
const log2 = await (await fetch("/docs/" + s + "/log.txt")).text();
|
|
80968
|
+
const testresults = await (await fetch("/docs/" + s + "/tests.json")).json();
|
|
80969
|
+
const manifest = await (await fetch("/docs/" + s + "/manifest.json")).json();
|
|
80970
80970
|
res({ src, exitcode, log: log2, testresults, manifest });
|
|
80971
80971
|
});
|
|
80972
80972
|
}));
|
package/package.json
CHANGED
package/src/TaskManFrontEnd.tsx
CHANGED
|
@@ -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(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()
|
|
962
|
+
const exitcode = await (await fetch("/docs" + "/" + s + "/exitcode")).text()
|
|
963
|
+
const log = await (await fetch("/docs" + "/" + s + "/log.txt")).text()
|
|
964
|
+
const testresults = await (await fetch("/docs" + "/" + s + "/tests.json")).json()
|
|
965
|
+
const manifest = await (await fetch("/docs" + "/" + s + "/manifest.json")).json()
|
|
966
966
|
|
|
967
967
|
res({ src, exitcode, log, testresults, manifest })
|
|
968
968
|
})
|