瀏覽代碼

refactor(fs-extra): remove console.log

Nicolas Meienberger 3 年之前
父節點
當前提交
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;
 };