@stryke/fs
Version:
A package containing various file system utilities that expand the functionality of NodeJs's built-in `fs` module.
13 lines (11 loc) • 513 B
JavaScript
const require_runtime = require('./_virtual/_rolldown/runtime.cjs');
const require_get_parent_path = require('./get-parent-path.cjs');
let vitest = require("vitest");
//#region src/get-parent-path.test.ts
(0, vitest.describe)("get-parent-path.ts exports", () => {
(0, vitest.it)("loads module exports", () => {
(0, vitest.expect)(require_get_parent_path.get_parent_path_exports).toBeDefined();
(0, vitest.expect)(typeof require_get_parent_path.get_parent_path_exports).toBe("object");
});
});
//#endregion