Asynchronous behaviour driven development for Node.

learn more… | top users | synonyms

0
votes
1answer
51 views

grunt.js throws error when using grunt-vows

I'm using grunt-vows (https://github.com/CMTegner/grunt-vows) in the following gruntfile: module.exports = function(grunt) { // Project configuration. grunt.loadNpmTasks("grunt-vows"); ...
0
votes
0answers
42 views

What is wrong with my usage of vows.js sub-topics?

For some reason, I can't seem to get vows.js sub-topics working in my real test-suite, but they work fine in a example file... can you spot my problem? This works: vows.describe('An Education in ...
1
vote
0answers
45 views

Collection Testing with Vows.js

I am trying to run unit tests against every item in a collection using Vows.js and I'm having a heck of a time getting it to work. Here is what I have at the moment. 'the variations objects': { ...
1
vote
0answers
24 views

Asynchronous Topic Scope Vows.JS

I'm having trouble passing parent topic values to children topic values. The code is asynchronous and I think that is where I'm having the problem. I want a part of the JSON response to be the topic ...
0
votes
1answer
74 views

Vows JS Testing for Undefined

I'm trying to use vows js to create unit tests. I am having trouble when the "topic" is `undefined'. Please see the example below: var vows = require('vows'), assert = require('assert'); function ...
0
votes
1answer
70 views

How to test HTTP server in flatiron

I am using the simple as possible web server straight off of the flatiron website and wanted to experiment testing it with vows. I can get the tests to pass but the test never exits. I assume this ...
0
votes
2answers
174 views

Setting PATH on Makefile - Node.js

I want to use api-easy to test my REST app. I have it in the dependences inside the package.json, so when I run npm install it's installed in ./node_modules I'm trying to add the api-easy to the path ...
0
votes
1answer
62 views

vows unit test got executed multiple times when the included app server uses nodejs cluster.fork

My app server uses node.js cluster API cluster.fork() to fork multiple child processes. This works fine. However, when I try to use vows for unit test, the test also got run multiple times because of ...
0
votes
1answer
62 views

Strange error when I use vows in node.js

I'm trying to start my node.js project with BDD using vows. Then I got this strange error. I was trying to write a small route testing for express with vows and here is my original code, ...
1
vote
0answers
99 views

Cannot find module eyes

I have installed vows using 'npm install vows' and made sure that i have 'eyes' but running 'npm install eyes' in the terminal. I have checked that there a eyes folder in the node_modules folder in ...
1
vote
1answer
184 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 ...
0
votes
1answer
151 views

Configuring $.ajax with backbone on node for testing with vows

(Edited to greatly simplify) On node I have the following server.js file. var Backbone = require('backbone'); var Tweet = Backbone.Model.extend({}); var Tweets = Backbone.Collection.extend({ ...
0
votes
2answers
1k views

Command not found after npm install in zsh

I'm having some problems installing vows via npm in zsh. Here's what I get. I tried installing it with and without the -g option. Do you have any idea what's wrong here? [❤ ...
3
votes
1answer
632 views

Namespaces in node.js with require

I am playing around and learning about vows with a personal project. This is a small client side library, with testing done in vows. Therefore, I must build and test a file that is written like this: ...
0
votes
0answers
197 views

What is the differences between node.js testing BDD frameworks mocha/jasmine/vow? [closed]

It would be awesome if someone could brefly explain what are the key differences between mostly used BDD frameworks for JS mocha/jasmine/vow and what should be the reasons for choice? Alex.
2
votes
0answers
302 views

Jasmine, Mocha, and Vows feature comparison [closed]

Would anyone be willing to give a listing of the differences between these three Javascript testing frameworks?
0
votes
1answer
89 views

I'm trying to wrap my head around variable scoping in Node.js and Vows

As an exercise in TDD in Node.js, I'm trying to implement a very simple "database" that stores things as flat files. Here's the very beginning of the DB module code: var fs = require( 'fs' ); ...
1
vote
0answers
132 views

How to debug test in vows nodejs?

How to debug vows test? I was thinking to make an html reporter for the tests and run tests in the browser, but I really don't know how and where to start. If there are better workarounds I'm happy ...
2
votes
1answer
417 views

I can't run test with “vows test/*” command on windows. How to use it? node.js

I've installed vows as module of my project and I've added the path "node_modules\vows\bin" to my environment path variable of windows vista. note: I've also renamed "node_modules\vows\bin\vows" to ...
1
vote
0answers
211 views

How to solve “callback not fired” with Vows and Node.js

I'm trying to get started with Vows and Vows-BDD. Unfortunately, the callbacks are tripping me up. In the very simple example below, how does one fix this error? ** Inside the first context ** ...
0
votes
1answer
260 views

Nodejs: Unable to get response body when working with vows and nodejs http module

I am playing around vows and nodejs. var vows = require('vows'); var http = require('http'); var suite = vows.describe('testing'); var host = 'www.google.com', port = '80', path = '/', method = ...
0
votes
1answer
435 views

Vows callback testing in Node.js generating anonymous errors

I am new to the continuation passing style of asynchronous computation used in Node.js applications, and I'm struggling to get a grip on some fairly basic code. I am trying to write a library which ...
0
votes
0answers
223 views

Node.js and Vows - I struggle for making a test for a Postgres database

I am really struggling for some time with a test to check the db running and making a test query. My code looks like this currently: var vows=require('vows'); var assert=require('assert'); ...
1
vote
1answer
395 views

BDD Testing framework for Express.js

Here is what i need: Must be able to run test in Jenkins I want to test API, so I don't really care about functions and objects, I just want to make sure that when I send POST to /api/users.json, I ...
1
vote
1answer
329 views

unit testing in javascript: how do you mock? - a (hard for me) example

I just rewrote backbone-mongodb to be really compatible with backbone. The original solution had nice vows for testing, and I would like my code to get tested as well, but simply have no idea how to ...
8
votes
2answers
2k views

Should I switch from Vows to Mocha?

I'm trying to decide whether to switch from Vows to Mocha for a large Node app. I've enjoyed almost all of the Vows experience - but there is just something strange about the argument passing. I ...
0
votes
1answer
479 views

Testing MongooseJs Validations

Does anyone know how to test Mongoose Validations? Example, I have the following Schema (as an example): var UserAccount = new Schema({ user_name : { type: String, required: true, ...
4
votes
1answer
452 views

Is this the correct way to do Dependency Injection in Node?

I recently started a node project and as a Test-Driven Developer, I quickly ran into a dependency injection problem with my brand new module. Here's how I figured out I should do dependency injection. ...
1
vote
2answers
801 views

node.js, testing a mongodb save and load

Perhaps I'm just having trouble figuring out the callbackyness, but I can't figure out a way to test a save and load in node.js. My test is this: vows.describe('Saving').addBatch({ 'Single item ...
3
votes
2answers
332 views

Error in writing asynchronous Vows.js Tests

I have been working with node and using vows to write tests. var vows = require('vows'); var assert = require('assert'); var boardData = require('../lib/data/BoardData.js'); vows.describe('Loading ...
1
vote
1answer
258 views

Webapp testing with Vows and Tobi

I'm completely new to node.js testing, maybe you can help me out: I want to do some more or less simple tests for my express webapp using vows and tobi (for example testing if the login route works) ...
1
vote
1answer
481 views

In vows, is there a `beforeEach` / `setup` feature?

Vows has an undocumented teardown feature, but I cannot see any way to setup stuff before each test (a.k.a. beforeEach). One would think it would be possible to cheat and use the topic, but a topic ...
0
votes
2answers
571 views

Vows: command not found

I ran my tests from the root folder of my app. The tests lay within the spec directory. $ vows No command 'vows' found, did you mean: Command 'vos' from package 'openafs-client' (universe) ...
0
votes
2answers
391 views

Node.js response undefined when connected using http client

I am new to node.js and began by creating a small web app which runs at port 5000. When i tried this url which runs in my local(either via the browser or via curl), everything works fine, and i get ...
1
vote
1answer
278 views

Vows: Testing Asynchronous Interleaving

Is there a methodology to test (potential) interleaving of asynchronous functions with vows? For example: // Topic portion var user = new User('jacob') user.set('email,'foo@bar.com') user.save() // ...
2
votes
1answer
281 views

What is the best setup to stub functionality when testing node.js apps?

I'm new to Node.js and in general new to testing frameworks / methods in Javascript. So far I'm thinking of giving vows a try. Specifically, I'd like to be able to stub / mock my data sources. ...
12
votes
4answers
956 views

How do you mock MySQL (without an ORM) in Node.js?

I'm using Node.js with felixge's node-mysql client. I am not using an ORM. I'm testing with Vows and want to be able to mock my database, possibly using Sinon. Since I don't really have a DAL per se ...
0
votes
3answers
250 views

Testing Closure Compiler output under Node.js

I'd like to use Vows to test DOM-free JavaScript code, ideally directly running against the compiled JS. My Vows are written in CoffeeScript, but I'm not sure how to load my JS; I've tried just ...
1
vote
2answers
261 views

In Vows.js how do you revert back to the original topic after going through an asynchronous callback?

Say I have the following sequence: vows.describe('Example').addBatch({ 'An example' : { topic: new Example(), 'with an async method' : function(example) { ...
0
votes
1answer
173 views

Tiny server/client setup - server doesn't respond. All code provided

I'm teaching myself Coffeescript/node and, of course, the only way to do this is with TDD. That means I'm also teaching myself vows. There are, I think, at least two problems. One is -- where does the ...
2
votes
1answer
251 views

Vows with Async nested topics - scope problem

I want my vow to have access to outerDocs and innerDocs from my topics but it doesn't. 'ASYNC TOPIC': { topic: function() { aModel.find({}, this.callback); }, 'NESTED ASYNC TOPIC': { ...
4
votes
2answers
913 views

Querying DOM of a Backbone.js app with Zombie.js

Just trying out Zombie.js for the first time today, and I'm having trouble visiting a page that populates DOM elements via javascript (specifically, a Backbone.js app). As a quick example, I visited ...
2
votes
1answer
287 views

Vows.js - Number of args this.callback returns to topic versus vow

From the vows site: "When this.callback is called, it passes on the arguments it received to the test functions, one by one, as if the values were returned by the topic function itself." In other ...
0
votes
1answer
192 views

Vows.js: Accessing parameters returned from outer topics inside inner topics

I was wondering if there is any way to obtain the return value of an outer topic, from within a test of an inner topic. If that was confusing, here's an example: "build.css" : { topic : ...
1
vote
2answers
261 views

How to use a diferent reporter with Vows' run() method?

Vows has a run() method that runs the test under node, without using the vows command. At https://github.com/cloudhead/vows/blob/master/lib/vows/suite.js we can see that this method takes an option ...
3
votes
2answers
723 views

Using Vows to test Mongoose models

Fairly new to the whole node.js community, and I'm having trouble with my unit tests on my first app. The problem is they pass, but they never actually run the assertions in the callbacks. As I ...
7
votes
3answers
3k views

Node.js testing RESTful API (vows.js?)

I could really do with some advice on testing a RESTful api I created in node.js. There are a plethora of frameworks out there and I am at a loss. My testing knowledge isn't good enough generally ...
10
votes
1answer
682 views

What is the correct way to launch your server from vows for testing?

I have an express server which I am testing using vows. I want to run the server from within the vows test suite, so that I dont need to have it running in the background in order for the test suite ...
7
votes
3answers
1k views

How to run cleanup with vows.js?

I'm using Vows.js to test some node.js which is creating records in a database. As a result of this it creates some test records in the database. I'd like to remove these records once the tests have ...
2
votes
1answer
1k views

REST API testing using vows, tobi and node.js

I am trying to combine the examples here, here to write a vows test for my node.js / express app that: Creates a new user object Checks the response was sane Uses the returned _id to test looking up ...

1 2