summaryrefslogtreecommitdiff
path: root/www/crm/wp-content/plugins/civicrm/civicrm/bower_components/qunit/addons/step/README.md
blob: 37af9df63fb2c7d219e725cf3260424a2ad64c7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
QUnit.step() - A QUnit Addon For Testing execution in order
============================================================

This addon for QUnit adds a step method that allows you to assert
the proper sequence in which the code should execute.

Example:

    test("example test", function () {
      function x() {
        QUnit.step(2, "function y should be called first");
      }
      function y() {
        QUnit.step(1);
      }
      y();
      x();
    });