Merge pull request #1057 from loki-project/neuroscr-patch-2

open group api - put integration code under guard
This commit is contained in:
Ryan Tharp 2020-04-03 04:14:23 -07:00 committed by GitHub
commit f632a87b05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,6 @@
const EventEmitter = require('events');
const nodeFetch = require('node-fetch');
const LokiAppDotNetAPI = require('./loki_app_dot_net_api');
const StubAppDotNetAPI = require('../../integration_test/stubs/stub_app_dot_net_api.js');
class LokiPublicChatFactoryAPI extends EventEmitter {
constructor(ourKey) {
@ -61,6 +60,8 @@ class LokiPublicChatFactoryAPI extends EventEmitter {
// after verification then we can start up all the pollers
if (process.env.USE_STUBBED_NETWORK) {
// eslint-disable-next-line global-require
const StubAppDotNetAPI = require('../../integration_test/stubs/stub_app_dot_net_api.js');
thisServer = new StubAppDotNetAPI(this.ourKey, serverUrl);
} else {
thisServer = new LokiAppDotNetAPI(this.ourKey, serverUrl);