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