federation/gateway/node_modules/backo2/test/index.js
2020-11-14 16:43:58 +01:00

18 lines
No EOL
394 B
JavaScript

var Backoff = require('..');
var assert = require('assert');
describe('.duration()', function(){
it('should increase the backoff', function(){
var b = new Backoff;
assert(100 == b.duration());
assert(200 == b.duration());
assert(400 == b.duration());
assert(800 == b.duration());
b.reset();
assert(100 == b.duration());
assert(200 == b.duration());
})
})