qunitjs/node-qunit

Error in example for async test

Opened this issue · 0 comments

In the example code of README.md, there's an error in the async test. The line:

var done = assert.stop();

Should be replaced by:

var done = assert.async();

See: here.