Returns the current environment which the knowledge base is running under.
if (xpertrule.runMode() == "BROWSER_TEST") {
console.log("Write out some test information");
}
Possible return values (strings) are:
Returned String | Description |
---|---|
"BROWSER" | Running in a web browser |
"BROWSER_TEST" | Running in a web browser from a Test Run |
NODEJS | Running on a node.js server (i.e. silent mode) |
NODEJS_TEST | Running on a node.js server from a Test Run |
CHAT_BROWSER | A chat knowledge base deployed purely in the browser. At present this can only be achieved via a Test Run |
CHAT_SERVER | A chat knowledge base deployed to an Viabl Platform chat server. The actual running environment is node.js |
APP | Running in Expert Adviser mobile app |