test('should handle error when fs.readFileSync fail', function () {
  return letta(failReadFile).catch(function (err) {
    test.ifError(!err)
    test.ok(err instanceof Error)
  })