UNPKG

ember-cli-ajh

Version:

Command line tool for developing ambitious ember.js apps

18 lines (14 loc) 394 B
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()); }) })