标签: javascript node.js testing jestjs
我有一个使用文件系统方法existsSync和mkdirSync的函数,我想对其进行测试。如何测试此代码?我应该嘲笑fs并返回简单的布尔值吗?我应该开玩笑地物理创建目录并检查它是否存在吗?
existsSync
mkdirSync
if (!existsSync(currentPath)) { mkdirSync(currentPath); }