Sha256: a014eab108955b2d29fc1b042c9421f086b14ab92dcc14070e304ff1ad5a8522

Contents?: true

Size: 462 Bytes

Versions: 4

Compression:

Stored size: 462 Bytes

Contents

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();
    });

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
sprockets-browserify-0.3.0 node_modules/browserify/node_modules/url/node_modules/punycode/vendor/qunit/addons/step/README.md
everqueen-1.1.1 lib/qunit/addons/step/README.md
everqueen-1.1.0 lib/qunit/addons/step/README.md
everqueen-1.0.1 lib/qunit/addons/step/README.md