Lines Matching full:fs
16 const fs = require('fs'); constant
53 const files = fs.readdirSync(directoryPath);
58 if (fs.statSync(filePath).isDirectory()) {
97 const hasExpectationFile = fs.existsSync(expectationPath);
98 const hasExpectationCache = fs.existsSync(expectationCachePath);
99 const hasResultCache = fs.existsSync(resultCachePath);
103 const hasExpectationUnobfuscation = fs.existsSync(expectUnobfuscationPath);
104 const hasResultUnobfuscation = fs.existsSync(resultUnobfuscationPath);
121 let actual = fs.readFileSync(filePath).toString();
122 let expectation = fs.readFileSync(expectationPath).toString();
127 let actual = fs.readFileSync(resultCachePath).toString();
128 let expectation = fs.readFileSync(expectationCachePath).toString();
133 let actual = fs.readFileSync(resultUnobfuscationPath).toString();
134 let expectation = fs.readFileSync(expectUnobfuscationPath).toString();