view tests/js-timer/timer-pending.js @ 395:f9b4101fa51c

Tests: do not copy resources anymore
author David Demelier <markand@malikania.fr>
date Tue, 10 Jan 2017 15:16:09 +0100
parents 6635b9187d71
children fd96de07657a
line wrap: on
line source

count = 0;

function onLoad()
{
    t = new Irccd.Timer(Irccd.Timer.Repeat, 500, function () {
        count += 1;
    });

    t.start();

    /* Force the plugin to wait so that timer push some events in the irccd's queue */
    Irccd.System.sleep(3);
    t.stop();
}