1
0
silverbullet/plugos/syscalls/fs.deno.test.ts

20 lines
560 B
TypeScript
Raw Normal View History

2023-08-20 15:51:00 +00:00
import { FileMeta } from "$sb/types.ts";
import { assert } from "../../test_deps.ts";
import { path } from "../deps.ts";
import fileSystemSyscalls from "./fs.deno.ts";
const fakeCtx = {} as any;
Deno.test("Test FS operations", async () => {
2023-01-22 17:53:14 +00:00
const thisFolder = path.resolve(
path.dirname(new URL(import.meta.url).pathname),
2023-01-22 17:53:14 +00:00
);
const syscalls = fileSystemSyscalls(thisFolder);
const allFiles: FileMeta[] = await syscalls["fs.listFiles"](
fakeCtx,
thisFolder,
true,
);
assert(allFiles.find((f) => f.name === "fs.deno.test.ts"));
});