qunit-parameterize
qunit-parameterize copied to clipboard
Parameterize - A QUnit plugin For Running Parameterized Tests
For potential inclusion in the plugin directory, .
Dear plugin users, I have neither the time nor motivation to support this plugin further as I'm far from javascript world now. If anyone is interested in growing this plugin...
the optional second argument ("expected") of test method was removed from qunit 2.x see: http://qunitjs.com/upgrade-guide-2.x/#replace-expected-argument-in-qunit-test
The signature of the `test()` method changed, this "fixes" it by throwing out an argument. A real fix would probably need more changes, throwing out the `expected` value in more...
Add qunit2 to files on package.json.
Skip test functionality is merged into master ( See #14). Now it would be good to make this functionality obvious for the consumers. To achieve that that new feature need...
So that the following would be possible too: ``` js QUnit .cases([ [2, 3, 5], [1, 2, 3], [-1, 0, -1], ]) .test("Sum test", function(a, b, expectedSum) { var actualSum...