mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-01-12 22:50:10 +08:00
Summary: This is another step in moving RN towards standard path-based requires. All the requires in `IntegrationTests` have been rewritten to use relative requires. This commit uses requires that are relative to `react-native/...` assuming that IntegrationTests are meant to try consuming RN rather than being part of it. See the umbrella issue at https://github.com/facebook/react-native/issues/24316 for more detail. [General] [Changed] - Migrate IntegrationTests from Haste to path-based requires Pull Request resolved: https://github.com/facebook/react-native/pull/24750 Differential Revision: D15258019 Pulled By: cpojer fbshipit-source-id: 01ac01ba4699f8ba424353f74e745b4057f79b59
43 lines
972 B
JavaScript
43 lines
972 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const BatchedBridge = require('react-native/Libraries/BatchedBridge/BatchedBridge');
|
|
|
|
const warning = require('fbjs/lib/warning');
|
|
const invariant = require('invariant');
|
|
|
|
const LoggingTestModule = {
|
|
logToConsole: function(str) {
|
|
console.log(str);
|
|
},
|
|
logToConsoleAfterWait: function(str, timeout_ms) {
|
|
setTimeout(function() {
|
|
console.log(str);
|
|
}, timeout_ms);
|
|
},
|
|
warning: function(str) {
|
|
warning(false, str);
|
|
},
|
|
invariant: function(str) {
|
|
invariant(false, str);
|
|
},
|
|
logErrorToConsole: function(str) {
|
|
console.error(str);
|
|
},
|
|
throwError: function(str) {
|
|
throw new Error(str);
|
|
},
|
|
};
|
|
|
|
BatchedBridge.registerCallableModule('LoggingTestModule', LoggingTestModule);
|
|
|
|
module.exports = LoggingTestModule;
|