I adapted bits and pieces of CoffeeScript's cakefile. It basically defines `function test(description, runTest)` and uses the builtin node assert module. Simple and got the job done:
https://github.com/jashkenas/coffee-script/blob/master/Cakef...
Is vows-bdd like a Cucumber to vows'/jasmine's RSpec?
The biggest benefit to Vows is its "everything can be async" nature. This approach makes testing incredibly fast. It's also built in a very modular way that allows for what it calls "batching" - which is really just test metaprogramming. Vows-bdd is just using this capacity for metaprogramming, so it's not too much more than a "mini-DSL" on top of Vows itself.
Vows-bdd is very much inspired by two libraries from Nodejitsu: prenup (a general purpose fluent vocabulary on top of vows) and api-easy (which uses Vows for simple, readable testing of API endpoints). All three of these libraries aren't really doing anything more than pre-wiring Vows tests together. I think it's a reflection of Vows' power that it can be so easily metaprogrammed in this style.
I'm currently using vows for my unit tests and expresso for my integrated testing. I'll give vows-bdd a try in place of expresso when I get a chance.
One big benefit of expresso are its helpers. While it's not difficult to supplement Vows with similar functions, Vows still doesn't have a built-in approach for pre-test bootstrapping.