Opal-Estate-Pro/node_modules/backo2/test/index.js
2019-09-13 11:27:52 +07:00

18 lines
394 B
JavaScript
Executable File

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());
})
})