Clear loghandlers on init and supress output in tests

This commit is contained in:
Nick O'Leary
2015-02-04 21:29:11 +00:00
parent c8d2d690f0
commit 1712146836
2 changed files with 5 additions and 1 deletions

View File

@@ -123,7 +123,9 @@ module.exports = {
startServer: function(done) {
server = http.createServer(function(req,res){app(req,res);});
RED.init(server, {});
RED.init(server, {
logging:{console:{level:'off'}}
});
server.listen(listenPort, address);
server.on('listening', function() {
port = server.address().port;