Skip to content

Commit 545f1bd

Browse files
committed
fix lint
1 parent 801bd19 commit 545f1bd

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

tests/servers/express/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ module.exports = {
77
stop: function() {
88
server.close();
99
}
10-
}
10+
};

tests/servers/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ var frameworks = [ 'koa', 'express' ];
33
var all = [ ];
44

55
for (var fw of frameworks) {
6-
server = require(`./${fw}`)
6+
var server = require(`./${fw}`);
77
server.framework = fw;
88

99
server.get = (path, cb) => {
1010
request.get(`http://localhost:8080${path}`, (err, response, body) => {
1111
cb(err, response, body);
1212
});
13-
}
13+
};
1414

1515
server.post = (path, params, cb) => {
1616
request.post({url: `http://localhost:8080${path}`, form: params }, (err, response, body) => {
1717
cb(err, response, body);
1818
});
19-
}
19+
};
2020

2121
all.push(server);
2222
}

tests/servers/koa/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ module.exports = {
77
stop: function() {
88
server.close();
99
}
10-
}
10+
};

0 commit comments

Comments
 (0)