exports.readFile = (filePath, fallbackValue) => {
    debug(`read file from: ${filePath}`);
    return _readFile(fs.readFile, filePath, fallbackValue);
};