Tutorial by Examples

Installing Jasmine standalone Download the latest Jasmine release from the Jasmine release page: Running Jasmine locally Run Jasmine in the browser by downloading the zip file, extracting it, the referencing the files as follows: <link rel="shortcut icon" type="image/png&qu...
To create a most basic test with Jasmine go to your spec (tests) folder and add file named testSpec.js. In that file add following: var request = require("request"); describe("Hello World Test", function() { // This is your test bundle describe("GET SO", fu...

Page 1 of 1