UNPKG

@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) 390 B
import { write_file_exports } from "./write-file.mjs"; import { describe, expect, it } from "vitest"; //#region src/write-file.test.ts describe("write-file.ts exports", () => { it("loads module exports", () => { expect(write_file_exports).toBeDefined(); expect(typeof write_file_exports).toBe("object"); }); }); //#endregion export { }; //# sourceMappingURL=write-file.test.mjs.map