Export realtime game statistics to disk in JSON and other formats.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
228 B

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();