You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
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()); }) })
|