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