We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2524d21 commit c097f41Copy full SHA for c097f41
test/indexTest.js
@@ -14,9 +14,10 @@ describe("Port function",function(){
14
assert(typeof myport, "number");
15
});
16
17
- it("Port value should be >= 0 and < 65536",function () {
18
- http.get(`http://localhost:${dataApp.prototype.port}`, function (response) {
19
- assert.equal(response.statusCode, 200);
+ it("Port value should be >= 0 and < 65536",function(done){
+ http.get(`http://localhost:${dataApp.prototype.port}`, function (response) {
+ assert.equal(response.statusCode, 200);
20
+ done();
21
22
23
0 commit comments