mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-14 04:59:45 +08:00
Reviewed By: fkgozali Differential Revision: D5446953 fbshipit-source-id: c08bd873024d591f5186a3a6767f319de3b6b6d8
23 lines
691 B
JavaScript
23 lines
691 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',null,['remoteMethod','promiseMethod'],[]],
|
|
['RemoteModule2',null,['remoteMethod','promiseMethod'],[]],
|
|
['Timing',null,['callImmediates']],
|
|
];
|
|
|
|
var MessageQueueTestConfig = {
|
|
remoteModuleConfig: remoteModulesConfig,
|
|
};
|
|
|
|
module.exports = MessageQueueTestConfig;
|