@stryke/fs
Version:
A package containing various file system utilities that expand the functionality of NodeJs's built-in `fs` module.
14 lines (12 loc) • 383 B
JavaScript
import { read_file_exports } from "./read-file.mjs";
import { describe, expect, it } from "vitest";
//#region src/read-file.test.ts
describe("read-file.ts exports", () => {
it("loads module exports", () => {
expect(read_file_exports).toBeDefined();
expect(typeof read_file_exports).toBe("object");
});
});
//#endregion
export { };
//# sourceMappingURL=read-file.test.mjs.map