-
When I use watch mode, it seems to be running my tests again when I update the file, but **not** actually reloading the file before running the test again. How is this supposed to work?
Here's how I'…
-
`winston-compat@0.1.0` currently using `vows@0.8.1` which vulnerable to RegExp DoS as the details below. Please update the dependencies accordingly to resolve the issue.
-
When running vows on the command line, if both "mytest.js" and "mytest.coffee" exist in the directory, this command:
```
vows mytest.coffee
```
will run 'mytest.js', even if the coffee file is more …
-
The code that breaks:
```
var vows = require('vows');
vows.describe('broken').addBatch({
'stuff': {
topic: function () {
throw new Error("AHHHHHHHHHHHH");
},
'should fail': func…
-
Vows is a nice test library, but it should not modify the 'assert' namespace. Further the stack trace that is printed when an assert fails is much LESS READABLE than the built in node one:
node.js:1…
-
I find myself writing a lot of repetitive "it works" tests that do nothing but call `assert.ifError(err);`. Seems like it would be kind of nice if I could have Perjury just automatically construct the…
-
Here's the code I'm running to test this:
``` JavaScript
'Request does something that throws an error' : {
topic: function () {
var req = require('http').request({
hostname : 'www.google…
-
Here's a test case. Notice that only the marked vow is not honored, the other ones are just there for comparison.
```
var vows = require('vows'),
assert = require('assert');
vows.describe('Vows …
-
Please post any issues you have with `vows@0.9.0-rc1` here. It will not be installed as "latest" automatically yet. You will need to install it explicitly:
```
npm install -g vows@next
npm install vo…
-
I am just starting to use this library, and trying to understand how vows knows if my codeblock is asynchronous or not. It seems like in even the simplest case it fails to work as I would expect.
```…