Tagged Questions

1
vote
1answer
84 views

How do I get the code coverage output to display using expresso?

I'm working on getting Expresso set up and some tests running. I followed along with a tutorial on node tuts and have 4 tests running, and passing. Now I'm trying to get a code coverage output to show ...
0
votes
1answer
53 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, ...