Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Andris Reinman committed Feb 16, 2012
1 parent b185ed2 commit 66fddce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/client.js
Expand Up @@ -10,7 +10,7 @@ var PORT_NUMBER = 8397;
exports["General tests"] = {
setUp: function (callback) {
console.log(1)
this.server = new simplesmtp.createServer({});
this.server = new simplesmtp.createServer({debug:true});
console.log(3)
this.server.listen(PORT_NUMBER, function(err){
console.log(2)
Expand All @@ -30,7 +30,7 @@ exports["General tests"] = {

"Connect and setup": function(test){
console.log(4)
var client = simplesmtp.connect(PORT_NUMBER, false, {});
var client = simplesmtp.connect(PORT_NUMBER, false, {debug:true});

client.once("idle", function(){
console.log(5)
Expand Down

0 comments on commit 66fddce

Please sign in to comment.