Top "Jasmine-node" questions

Integration of Jasmine Spec framework with Node.

Exporting classes with node.js

I have the following test code that is being ran by jasmine-node in a file called bob_test.spec.js …

javascript node.js jasmine jasmine-node
How to run Jasmine tests on Node.js from command line

How do I run Jasmine tests on Node.js from command line? I have installed jasmine-node via npm and written …

node.js jasmine jasmine-node
jasmine tests in karma: Uncaught ReferenceError: require is not defined

Karma can not recognize 'require' statement in JSFileSpec.js file. Running karma.conf.js: (function() { describe("DummyEmitter creation", function(){ return …

javascript karma-runner jasmine-node
loop through it() in jasmine describe output spec not found

I learned that this way is the best way to loop through the it() in a describe(), but it failed …

javascript unit-testing jasmine jasmine-node
What's the correct way to use Jasmine from Node?

After much hacking, I've managed to get a simple Jasmine test running via Node. However, there is some weird stuff …

javascript node.js jasmine jasmine-node
How to Test PUT method using supertest and jasmine-node

I am building an API with expressjs and my routes look like this module.exports = function(app){ var book = require(…

supertest jasmine-node