mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-07-27 11:18:08 +08:00
Initial work on the server
This commit is contained in:
Generated
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
var common = require('../../common');
|
||||
var connection = common.createConnection({port: common.bogusPort});
|
||||
var assert = require('assert');
|
||||
|
||||
var err;
|
||||
connection.connect(function(_err) {
|
||||
err = _err;
|
||||
});
|
||||
|
||||
process.on('exit', function() {
|
||||
assert.ok(err.stack.indexOf(__filename) > 0);
|
||||
});
|
||||
Reference in New Issue
Block a user