1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/unit/mystreams.js
Juan Picado @jotadeveloper 2ee4f38743
Refactor Storage, move local storage to inner folder.
Refactor methods to camelCase
Relocate utilities
2017-06-10 23:41:24 +02:00

20 lines
390 B
JavaScript

'use strict';
let ReadTarball = require('../../lib/storage/streams').ReadTarball;
describe('mystreams', function() {
it('should delay events', function(cb) {
let test = new ReadTarball();
test.abort();
setTimeout(function() {
test.abort = function() {
cb();
};
test.abort = function() {
throw Error('fail');
};
}, 10);
});
});