mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Add flag to disable build check for tests
This commit is contained in:
parent
a76e4fede1
commit
eb57089f06
@ -43,7 +43,9 @@ function checkBuild() {
|
|||||||
|
|
||||||
var RED = {
|
var RED = {
|
||||||
init: function(httpServer,userSettings) {
|
init: function(httpServer,userSettings) {
|
||||||
|
if (!userSettings.SKIP_BUILD_CHECK) {
|
||||||
checkBuild();
|
checkBuild();
|
||||||
|
}
|
||||||
userSettings.version = this.version();
|
userSettings.version = this.version();
|
||||||
log.init(userSettings);
|
log.init(userSettings);
|
||||||
settings.init(userSettings);
|
settings.init(userSettings);
|
||||||
|
@ -138,6 +138,7 @@ module.exports = {
|
|||||||
startServer: function(done) {
|
startServer: function(done) {
|
||||||
server = http.createServer(function(req,res){app(req,res);});
|
server = http.createServer(function(req,res){app(req,res);});
|
||||||
RED.init(server, {
|
RED.init(server, {
|
||||||
|
SKIP_BUILD_CHECK: true,
|
||||||
logging:{console:{level:'off'}}
|
logging:{console:{level:'off'}}
|
||||||
});
|
});
|
||||||
server.listen(listenPort, address);
|
server.listen(listenPort, address);
|
||||||
|
Loading…
Reference in New Issue
Block a user