UNPKG

grunt-jstestdriver

Version:

Grunt task for uniting testing using JS Test Driver.

15 lines (11 loc) 328 B
describe("JsTestDriver Jasmine numbers test", function () { "use strict"; it("Test adding numbers", function () { var total = 10 + 10 + 10; expect(total).toBe(30); }); it("Test multiplying numbers", function () { var total = 10 * 10 * 10; expect(total).toBe(1000); }); });