Remove sync write file

This commit is contained in:
Juan Carlos Picado 2016-08-13 08:21:55 +02:00
parent 115a02b0eb
commit 5cdadbd7fa
1 changed files with 0 additions and 5 deletions

View File

@ -40,11 +40,6 @@ module.exports = function() {
.status(200) .status(200)
.then(function (body) { .then(function (body) {
// not real sha due to utf8 conversion // not real sha due to utf8 conversion
require('fs').writeFileSync(
'/Users/trent.earl/what.tgz',
body
);
assert.strictEqual(sha(body), '6e67b14e2c0e450b942e2bc8086b49e90f594790') assert.strictEqual(sha(body), '6e67b14e2c0e450b942e2bc8086b49e90f594790')
}) })
}) })