A unit testing framework in node.js and the browser, based on the assert module
0
votes
0answers
5 views
how to trace nodeunit test using trace.gl
How to trace nodeunit test using trace.gl
I tried in 2 ways:
$ node ~/Dropbox/tracegl.js ./path/To/My/NodeunitTests. And then run my unit test from that directory in another console.
$ node ...
0
votes
0answers
10 views
how to debug nodeunit using node-inspector
I can do:
I can test node.js modules using nodeunit.
I can debug my node.js express site using node inspector.
But how to debug nodeunit test using node inspector?
I tried, but not working:
...
0
votes
1answer
18 views
tests in nodejs with compoundjs and mocha
I have created from scratch scaffolded compoundjs app using:
compound init test_app && cd test_app
Than
compound g crud user id name password created:date
Than
npm test
which runs: ...
0
votes
1answer
23 views
How to run tests in node.js with compoundjs
I am trying to figure out how to run tests in compound. When i run npm test I receive the following error.
describe('AccountController', function() {
^
ReferenceError: describe is not defined
at ...
1
vote
0answers
54 views
Node.js doesn't automatically terminate when the program is finished
I have a program which opens a websocket to a remote server with socket.io-client:
var io = require("socket.io-client");
var ticker = io.connect("https://socketio.mtgox.com/mtgox");
var done = ...
0
votes
1answer
69 views
NodeJS not spawning child process except in tests
I have the following NodeJS code:
var spawn = require('child_process').spawn;
var Unzipper = {
unzip: function(src, dest, callback) {
var self = this;
if (!fs.existsSync(dest)) {
...
1
vote
0answers
84 views
How to mock session Object in compoundjs application in node.js
I have a compound js application in node.js.
For some actions i have a filter checking the existence of "session.user" value which gets populated only after successful authentication.
But whenever ...
0
votes
0answers
55 views
npm test for compoundjs application
I have a compound js application. I only generated scaffold using
compound g scaffold user name surname
This command also created test/controllers/users-controllers-test.js file.
I have tried ...
0
votes
2answers
89 views
Unit Test Framework For Geddy MVC on Node.js
I'm running Geddy MVC Framework on Node.js on Heroku right now with a Postgres database. I can't seem to find any unit test frameworks for node.js that support Geddy. I have tried nodeunit, jasmine ...
0
votes
1answer
101 views
Error: Cannot find module '../deps/console.log'
I'm on OS X 10.8.2, with Node.js 0.10.0 installed via homebrew. When I try to run npm test on nodegit, I get the following error:
cd test && nodeunit *.js
module.js:340
throw err;
...
0
votes
1answer
66 views
Node unit test - mocking calls to solr
For my application i have used solr-node client
How can i write unit tests by mocking the calls to the solr module?
Can someone pls help me out of this?
1
vote
2answers
87 views
Assertions library for node.js?
Assertions provided by node.js assert for unit-testing are very limited. Even before I've written the first test I was already creating a few of assertions as it was clear I will keep re-using them.
...
3
votes
1answer
480 views
Structure for unit testing on node.js with mongoose
I've been developing with node.js for months but now I'm starting a new project and I'd like to know how to structure the app.
My problem comes when talking about unit testing. I will use nodeunit to ...
1
vote
1answer
128 views
why is my nodeunit test of mongodb not finishing?
I am writing nodeunit tests for operations around a mongodb. When I execute my test with nodeunit (nodeunit testname.js), the test runs through and goes green but the nodeunit command line doesn't ...
1
vote
2answers
220 views
Overriding functions in other modules in node.js
I'm trying to stub a function with nodeunit in a Node.js app. Here's a simplified version of what I'm trying to do:
In lib/file.js:
var request = require('request');
var myFunc = function(input, ...
1
vote
1answer
186 views
How to create a data driven test in Node.js
In Node.js unit tests, what is the way to create data driven unit tests?
For Example, I've a common function / method, which I want to re-use in multiple unit tests with different sets of data. I ...
2
votes
1answer
264 views
Nodeunit - Backbone - Require.js: Unitesting
I'm trying to use Nodeunit to test my Backbone models and later I'd like to test the other components as well. The main reason I'm using Nodeunit is because my server tests are using it already and ...
0
votes
1answer
66 views
Is there an equivalent to assertFalse in nodeunit?
Using nodeunit is there an assert to check for false values? Other testing frameworks have something like assertFalse, should I use something like:
test.ok(!shouldBeFalse());
or
...
2
votes
2answers
207 views
Nodeunit test hangs for async db call ORMnomnom
I am trying to write unit test for async db calls. I'm using NodeJS with ORMnomnom package installed as orm db access and nodeunit for unit testing.
But it hang for this simple test:
Here is code ...
0
votes
1answer
111 views
what's a productive environment for nodeunit?
I use sublime text to author node.js projects. I also use nodeunit to run tests. So far I've used its console mode, which does not generate visually appealing results. I then used the html mode, which ...
1
vote
1answer
340 views
Possible to tell nodeunit not to finish a particular test until test.done() is called?
I am doing some async testing with nodeunit and I was wondering whether it is possible to tell nodeunit to not terminate test cases until test.done is called.
Basically this is how my test cases ...
0
votes
1answer
319 views
Nodeunit Execution Order?
I am trying to test my web server using nodeunit:
test.js
exports.basic = testCase({
setUp: function (callback) {
this.ws = new WrappedServer();
this.ws.run(PORT);
callback();
},
...
1
vote
1answer
299 views
How to get nodeunit to detect and run tests included in subfolders?
I have the following folder structure to my nodeunit tests for a particular project:
/tests
/tests/basic-test.js
/tests/models/
/tests/models/model1-tests.js
/tests/models/model2-tests.js
My ...
0
votes
2answers
706 views
Coffeescript, nodeunit and global variables
I have a web app written in Coffeescript that I'm testing with nodeunit, and I can't seem to get access to global variables ("session" vars in the app) set in the test:
src/test.coffee
root = ...
0
votes
1answer
166 views
Abusing Javascript: Is it possible to have helper methods for nodeunit?
Does nodeunit have helper methods that I can place inside exports.MYTEST?
I am currently doing something like that:
exports.test = {
setup: function(test) {
this.foo = "bar";
},
...
1
vote
1answer
507 views
Can I run nodeunit from cloud9-ide
I would like to know if it is possible to run nodeunit tests within Cloud9 IDE (like I run JUnit tests within IDE like Eclipse).
ps: I use a local Cloud9 IDE, not from c9.io
Thanks
1
vote
1answer
500 views
Nodeunit sample with websockets
I am trying to apply the TDD principles to an application using node.js and nodeunit for the unit test. I am struggling trying to create a test case that is able to use websockets to test the ...
1
vote
1answer
136 views
How to add custom assertions in Nodeunit
Is there a way of adding custom assertions to the NodeUnit test object that gets passed to each test?
I'd like to do something like:
var Test = require('nodeunit').Test;
...
0
votes
2answers
648 views
Use Jasmine to stub JS callbacks based on argument values
I've got a JS method in my node.js app that I want to unit test. It makes several calls to a service method, each time passing that service a callback; the callback accumulates the results.
How can I ...
3
votes
1answer
856 views
How do I get an asynchronous result back with node unit and mongoose?
How do I get an asynchronous result back in nodeunit and mongoose? I've tried the following code and it seems to hang on the database callback never returning a result or err.
mongoose = require ...
4
votes
1answer
811 views
How to use the node.js module 'nodeunit' with coffeescript files
I'm trying to get the nodeunit module working within a coffeescript project but can't seem to get even a basic test to run.
Here's my example Coffeescript
require 'nodeunit'
test = true
test2 = ...
0
votes
1answer
216 views
What is the proper way to handle asynchronicity in nodeunit?
I'm brand-spanking new to the whole stack - javascript, node.js, coffeescript, nodeunit. Think I should do it step by step? You're probably right, but I still am not going to do it.
Here is the test ...
2
votes
1answer
628 views
Nodeunit test.throws doesn't seem to catch the error
I am trying to create a test suite for a module that I am writing in Node.js using Nodeunit. The module is a basic music playlist that allows adding and removing tracks to the playlist.
var playlist ...
1
vote
1answer
588 views
Is there a way to run nodeunit tests through maven/ant
I have created some unit tests for my node.js application in nodeunit. I want to be able to run the tests through maven / ant, because I intend to run them through Jenkins. Has anyone had any success ...
0
votes
2answers
1k views
How to test POST-requests with NodeUnit and Express?
I'm writing a simple REST service in Node.js (just experimenting), trying to figure out if Node has matured enough yet. I'm also using NodeUnit for my unit testing.
Now, NodeUnit works fine as a ...
4
votes
2answers
1k views
Nodeunit command not found?
I'm running on Windows 7 and have node installed fine with cygwin. I am following along on the how to on mcmahon's website for nodeunit: http://caolanmcmahon.com/posts/unit_testing_in_node_js .
I ...
1
vote
1answer
625 views
Using sinon mocks with nodeunit
I'm learning to use sinon with nodeunit, specifically to do mocking. The recommended approach is to use sinon-nodeunit. According to the documentation, mocks should be available via the mock method ...


