Skip to content

Commit ba38856

Browse files
committed
Removed unnecessary console output
1 parent c5c9f7d commit ba38856

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

test/create-servers-test.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ test('only https', function (t) {
4444
},
4545
handler: fend
4646
}, function (err, servers) {
47-
console.dir(err);
4847
t.error(err);
4948
t.equals(typeof servers, 'object');
5049
t.equals(typeof servers.https, 'object');
@@ -64,7 +63,6 @@ test('absolute cert path resolution', function (t) {
6463
},
6564
handler: fend
6665
}, function (err, servers) {
67-
console.dir(err);
6866
t.error(err);
6967
t.equals(typeof servers, 'object');
7068
t.equals(typeof servers.https, 'object');
@@ -85,7 +83,6 @@ test('http && https', function (t) {
8583
},
8684
handler: fend
8785
}, function (err, servers) {
88-
console.dir(err);
8986
t.error(err);
9087
t.equals(typeof servers, 'object');
9188
t.equals(typeof servers.http, 'object');
@@ -135,7 +132,6 @@ test('http && https with different handlers', function (t) {
135132
key: 'agent2-key.pem'
136133
},
137134
}, function (err, servers) {
138-
console.dir(err);
139135
t.error(err);
140136
t.equals(typeof servers, 'object');
141137
t.equals(typeof servers.http, 'object');
@@ -151,7 +147,6 @@ test('http && https with different handlers', function (t) {
151147
http: '9876',
152148
handler: fend
153149
}, function (err, servers) {
154-
console.dir(err);
155150
t.error(err);
156151
t.equals(typeof servers, 'object');
157152
t.equals(typeof servers.http, 'object');
@@ -169,7 +164,6 @@ test('http && https with different handlers', function (t) {
169164
},
170165
handler: fend
171166
}, function (err, servers) {
172-
console.dir(err);
173167
t.error(err);
174168
t.equals(typeof servers, 'object');
175169
t.equals(typeof servers.http, 'object');

0 commit comments

Comments
 (0)