Slack has replaced this room: https://codex-community-slackin.herokuapp.com/
var transaction = cypher.transaction()
.on('data', function (result) {
results++;
result.should.eql({ n: { test: true } });
})
.on('error', shouldNotError)
.on('end', function() {
results.should.eql(2);
done();
})
;
transaction.write('match (n:Test) return n limit 1');
transaction.write('match (n:Test) return n limit 1');
transaction.commit();