0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
This commit is contained in:
Alex Kocharin 2013-12-27 17:06:57 +04:00
parent 985d705ad2
commit f3f4fdc4ac

17
test/unit/mystreams.js Normal file
View file

@ -0,0 +1,17 @@
var ReadTarball = require('../../lib/streams').ReadTarballStream
describe('mystreams', function() {
it('should delay events', function(cb) {
var test = new ReadTarball()
test.abort()
setTimeout(function() {
test.abort = function() {
cb()
}
test.abort = function() {
throw new Error('fail')
}
}, 10)
})
})