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