A set of classes for easy testing of built-in structures of FS.
$ npm install @kp-mods/fs.macchiato
import { Stats, StatsMode, Dirent, DirentType } from '@kp-mods/fs.macchiato';
const stats = new Stats({ mode: StatsMode.File });
const dirent = new Dirent('file.txt', DirentType.File);
Creates a fake instance of fs.Stats
. Can accept options to control parameter values.
const stats = new Stats({
mode: StatsMode.File,
ino: 3
});
Creates a fake instance of fs.Dirent
. Can accept options to control parameter values.
const dirent = new Dirent('file.txt', DirentType.Link);
See the Releases section of our GitHub project for changelogs for each release version.
This software is released under the terms of the MIT license.