Fix tests
parent
a6d07a46e7
commit
d2c158378f
|
@ -1,4 +1,4 @@
|
||||||
FROM denoland/deno:debian-1.45.3
|
FROM denoland/deno:debian-1.45.4
|
||||||
|
|
||||||
# The volume that will keep the space data
|
# The volume that will keep the space data
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,9 @@ Deno.test("Test plug run", {
|
||||||
await compileManifest(
|
await compileManifest(
|
||||||
join(testFolder, "test_plug_run.plug.yaml"),
|
join(testFolder, "test_plug_run.plug.yaml"),
|
||||||
plugFolder,
|
plugFolder,
|
||||||
|
{
|
||||||
|
configPath: new URL("../../deno.json", import.meta.url).pathname,
|
||||||
|
},
|
||||||
);
|
);
|
||||||
assertEquals(
|
assertEquals(
|
||||||
await runPlug(
|
await runPlug(
|
||||||
|
|
|
@ -39,6 +39,9 @@ Deno.test("Run a deno sandbox", {
|
||||||
const workerPath = await compileManifest(
|
const workerPath = await compileManifest(
|
||||||
new URL("test_runtime.plug.yaml", import.meta.url).pathname,
|
new URL("test_runtime.plug.yaml", import.meta.url).pathname,
|
||||||
tempDir,
|
tempDir,
|
||||||
|
{
|
||||||
|
configPath: new URL("../../deno.json", import.meta.url).pathname,
|
||||||
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
const plug = await system.load(
|
const plug = await system.load(
|
||||||
|
|
Loading…
Reference in New Issue