2016-06-13 15:23:23 +00:00
|
|
|
/**
|
2018-09-11 22:27:47 +00:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2016-06-13 15:23:23 +00:00
|
|
|
*
|
2018-02-17 02:24:55 +00:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2016-06-13 15:23:23 +00:00
|
|
|
*
|
|
|
|
* These don't actually exist anywhere in the code.
|
2018-05-11 02:06:46 +00:00
|
|
|
*
|
|
|
|
* @format
|
2016-06-13 15:23:23 +00:00
|
|
|
*/
|
2018-05-11 02:06:46 +00:00
|
|
|
|
2016-06-13 15:23:23 +00:00
|
|
|
'use strict';
|
2018-05-10 22:44:52 +00:00
|
|
|
const remoteModulesConfig = [
|
2018-05-11 02:06:46 +00:00
|
|
|
['RemoteModule1', null, ['remoteMethod', 'promiseMethod'], []],
|
|
|
|
['RemoteModule2', null, ['remoteMethod', 'promiseMethod'], []],
|
2016-08-22 13:49:06 +00:00
|
|
|
];
|
2016-06-13 15:23:23 +00:00
|
|
|
|
2018-05-10 22:44:52 +00:00
|
|
|
const MessageQueueTestConfig = {
|
2016-06-13 15:23:23 +00:00
|
|
|
remoteModuleConfig: remoteModulesConfig,
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = MessageQueueTestConfig;
|