mirror of
https://github.com/wassname/HackFlowy.git
synced 2026-08-05 12:40:39 +08:00
Initial work on the server
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
// Experimental: https://github.com/felixge/node-mysql/issues/198
|
||||
|
||||
var common = require('../../common');
|
||||
var connection = common.createConnection();
|
||||
var assert = require('assert');
|
||||
|
||||
var err;
|
||||
connection.query('invalid sql', function(_err) {
|
||||
err = _err;
|
||||
});
|
||||
|
||||
connection.end();
|
||||
|
||||
process.on('exit', function() {
|
||||
assert.ok(err.stack.indexOf(__filename) > 0);
|
||||
});
|
||||
Reference in New Issue
Block a user