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.
15 lines
393 B
15 lines
393 B
14 years ago
|
var sys = require('sys'),
|
||
|
colors = require('colors'),
|
||
|
xmpp = require('node-xmpp'),
|
||
|
BasicClient = require('../lib/xmpp-client').BasicClient,
|
||
|
JID = require('node-xmpp').JID,
|
||
|
conf = require('./conf').conf;
|
||
|
|
||
|
exports.testInit = function(test) {
|
||
|
test.expect(1);
|
||
|
var b = new BasicClient(conf.b, function() {
|
||
|
sys.debug('just connected');
|
||
|
test.ok('true', 'connected');
|
||
|
test.done();
|
||
|
});
|
||
|
};
|