0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00

Merge pull request #49 from juanpicado/master

Fix test node6
This commit is contained in:
Trent Earl 2016-08-13 09:36:34 -05:00 committed by GitHub
commit 7579bb21c0
3 changed files with 3 additions and 6 deletions

1
.gitignore vendored
View file

@ -3,7 +3,6 @@ sinopia-*.tgz
.DS_Store .DS_Store
### ###
bin/**
!bin/sinopia !bin/sinopia
test-storage* test-storage*

3
bin/verdaccio Normal file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env node
require('../lib/cli')

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')
}) })
}) })