2016-06-13 15:23:23 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2013-present, Facebook, Inc.
|
|
|
|
*
|
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
|
|
|
*
|
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';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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 22:44:52 +00:00
|
|
|
const MessageQueueTestModule = {
|
2018-05-11 02:06:46 +00:00
|
|
|
testHook1: function() {},
|
|
|
|
testHook2: function() {},
|
2016-06-13 15:23:23 +00:00
|
|
|
};
|
|
|
|
|
2016-09-23 18:12:54 +00:00
|
|
|
module.exports = MessageQueueTestModule;
|