UNPKG

hae-uitest

Version:

A UI Test Framework for Huawei HAE

13 lines (11 loc) 256 B
//save file var fs = require('fs'); module.exports = function(filePath, data, callback) { fs.writeFile(filePath, data, encoding = 'utf8', function(err) { if (err) { callback(err, null); } else { callback(null, filePath); } }); }