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
|
||||
|
||||
|
|
|
@ -22,6 +22,9 @@ Deno.test("Test plug run", {
|
|||
await compileManifest(
|
||||
join(testFolder, "test_plug_run.plug.yaml"),
|
||||
plugFolder,
|
||||
{
|
||||
configPath: new URL("../../deno.json", import.meta.url).pathname,
|
||||
},
|
||||
);
|
||||
assertEquals(
|
||||
await runPlug(
|
||||
|
|
|
@ -39,6 +39,9 @@ Deno.test("Run a deno sandbox", {
|
|||
const workerPath = await compileManifest(
|
||||
new URL("test_runtime.plug.yaml", import.meta.url).pathname,
|
||||
tempDir,
|
||||
{
|
||||
configPath: new URL("../../deno.json", import.meta.url).pathname,
|
||||
},
|
||||
);
|
||||
|
||||
const plug = await system.load(
|
||||
|
|
Loading…
Reference in New Issue