mirror of
https://github.com/status-im/react-native.git
synced 2025-01-20 22:39:20 +00:00
61b21bcdd1
Reviewed By: javache Differential Revision: D3741859 fbshipit-source-id: b678b3a2bbed4f7ed386e10db19553c8beef7366
22 lines
651 B
JavaScript
22 lines
651 B
JavaScript
/**
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
* These don't actually exist anywhere in the code.
|
|
*/
|
|
'use strict';
|
|
var remoteModulesConfig = [
|
|
['RemoteModule1',['remoteMethod1','remoteMethod2'],[],[]],
|
|
['RemoteModule2',['remoteMethod1','remoteMethod2'],[],[]],
|
|
];
|
|
|
|
var MessageQueueTestConfig = {
|
|
remoteModuleConfig: remoteModulesConfig,
|
|
};
|
|
|
|
module.exports = MessageQueueTestConfig;
|