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