commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / bower_components / qunit / addons / step / step-test.js
1 module('Step Addon');
2 test("step", 3, function () {
3 QUnit.step(1, "step starts at 1");
4 setTimeout(function () {
5 start();
6 QUnit.step(3);
7 }, 100);
8 QUnit.step(2, "before the setTimeout callback is run");
9 stop();
10 });
11 test("step counter", 1, function () {
12 QUnit.step(1, "each test has its own step counter");
13 });