test('should handle result of `fs.readFile`', function () {
  return letta(readFile).then(function (res) {
    test.equal(typeof res, 'string')
    test.ok(res.indexOf('"license": "MIT"') !== -1)
  })