atlas-dedicated-server/node.js simple HTTP server for MapImg and CellImg_/node_modules/backo2/test/index.js
2018-12-29 18:58:34 +01:00

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