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