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