2016-06-13 08:23:23 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08: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 08:23:23 -07:00
|
|
|
*
|
2018-05-10 19:06:46 -07:00
|
|
|
* @format
|
2016-06-13 08:23:23 -07:00
|
|
|
*/
|
2018-05-10 19:06:46 -07:00
|
|
|
|
2016-06-13 08:23:23 -07:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Dummy module that only exists for the sake of proving that the message queue
|
|
|
|
* correctly dispatches to commonJS modules. The `testHook` is overriden by test
|
|
|
|
* cases.
|
|
|
|
*/
|
2018-05-10 15:44:52 -07:00
|
|
|
const MessageQueueTestModule = {
|
2018-05-10 19:06:46 -07:00
|
|
|
testHook1: function() {},
|
|
|
|
testHook2: function() {},
|
2016-06-13 08:23:23 -07:00
|
|
|
};
|
|
|
|
|
2016-09-23 11:12:54 -07:00
|
|
|
module.exports = MessageQueueTestModule;
|