Skip to content

Commit

Permalink
[leaks] adds test to check for global leaks
Browse files Browse the repository at this point in the history
* from #2
  • Loading branch information
dscape committed Dec 4, 2012
1 parent fe90c75 commit 214df9f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/global_leaks.js
@@ -0,0 +1,11 @@
var specify = require('specify')
, lynx = require('../lib/lynx')
;

specify('errors', function (assert) {
var connection = new lynx('locahost', 86875);
connection.increment('a');
assert.ok(true);
});

specify.run();

0 comments on commit 214df9f

Please sign in to comment.