view tests/js-timer/timer-pending.js @ 357:c50769df3493

Irccdctl: improve help summary
author David Demelier <markand@malikania.fr>
date Thu, 24 Nov 2016 17:25: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();
}