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