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