dojo/tests/unit/debounce.js

Maintainability

80.62

Lines of code

52

Created with Raphaël 2.1.002550751002015-5-18

2015-5-18
Maintainability: 80.62

Created with Raphaël 2.1.00153045602015-5-18

2015-5-18
Lines of Code: 52

Difficulty

12.09

Estimated Errors

0.28

Function weight

By Complexity

Created with Raphaël 2.1.0<anonymous>1

By SLOC

Created with Raphaël 2.1.0<anonymous>47
1
define([
2
    'intern!object',
3
    'intern/chai!assert',
4
    '../../debounce',
5
    'sinon'
6
], function (registerSuite, assert, debounce, sinon) {
7
    registerSuite({
8
        name: 'dojo/debounce',
9
 
10
        sync: function () {
11
            var spy = sinon.spy();
12
            var debouncer = debounce(spy, 100);
13
 
14
            debouncer();
15
            debouncer();
16
            debouncer();
17
 
18
            setTimeout(this.async().callback(function () {
19
                assert.equal(spy.callCount, 1);
20
            }), 1000);
21
        },
22
 
23
        async: function () {
24
            var spy = sinon.spy();
25
            var debouncer = sinon.spy(debounce(spy, 100));
26
 
27
            debouncer();
28
            setTimeout(function () {
29
                debouncer();
30
            }, 40);
31
            setTimeout(function () {
32
                debouncer();
33
            }, 80);
34
            setTimeout(function () {
35
                debouncer();
36
            }, 120);
37
            setTimeout(function () {
38
                debouncer();
39
            }, 180);
40
            setTimeout(function () {
41
                debouncer();
42
            }, 220);
43
            setTimeout(function () {
44
                debouncer();
45
            }, 350);
46
 
47
            setTimeout(this.async().callback(function () {
48
                assert.ok(spy.callCount < debouncer.callCount);
49
            }), 2000);
50
        }
51
    });
52
});