浏览代码

refactor(fs-extra): remove console.log

Nicolas Meienberger 2 年之前
父节点
当前提交
0978338905
共有 1 个文件被更改,包括 0 次插入1 次删除
  1. 0 1
      packages/system-api/__mocks__/fs-extra.ts

+ 0 - 1
packages/system-api/__mocks__/fs-extra.ts

@@ -36,7 +36,6 @@ const readFileSync = (p: string) => {
 };
 
 const existsSync = (p: string) => {
-  console.log(p);
   return mockFiles[p] !== undefined;
 };