mirror of
https://github.com/sstent/node.git
synced 2026-01-27 15:41:43 +00:00
first post
This commit is contained in:
10
Nodejs-Socketio-Mysql-Demo/node_modules/mysql/test/integration/Client/commands/test-statistics.js
generated
vendored
Normal file
10
Nodejs-Socketio-Mysql-Demo/node_modules/mysql/test/integration/Client/commands/test-statistics.js
generated
vendored
Normal file
@@ -0,0 +1,10 @@
|
||||
var common = require('../../../common');
|
||||
var assert = require('assert');
|
||||
|
||||
var client = common.createClient();
|
||||
client.statistics(function(err, result) {
|
||||
if (err) throw err;
|
||||
|
||||
assert.ok(result.extra.match(/time/i));
|
||||
client.end();
|
||||
});
|
||||
Reference in New Issue
Block a user