UNPKG

grunt-jstestdriver

Version:

Grunt task for uniting testing using JS Test Driver.

15 lines (12 loc) 298 B
TestCase("JsTestDriver built in numbers test", { testA: function () { "use strict"; var total = 10 + 10 + 10; assertEquals(30, total); }, testB: function () { "use strict"; var total = 10 * 10 * 10; assertEquals(1000, total); } });