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
|
|
|
*
|
|
|
|
*/
|
|
|
|
'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.
|
|
|
|
*/
|
2016-09-23 18:12:54 +00:00
|
|
|
var MessageQueueTestModule = {
|
2016-06-13 15:23:23 +00:00
|
|
|
testHook1: function() {
|
|
|
|
},
|
|
|
|
testHook2: function() {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-09-23 18:12:54 +00:00
|
|
|
module.exports = MessageQueueTestModule;
|