jasmine-node from the command line helps with a quick TDD cycle.
Here's a snippet from Validation.spec.js:
describe("Package Validation", function () {
it("should handle a good package", function (done) {
packageValidator.validate(basicValidExtension, {}, function (err, result) {
expect(err).toBeNull();