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