Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jhen0409 committed Jul 21, 2023
1 parent 6364ce1 commit cd83c5d
Show file tree
Hide file tree
Showing 2 changed files with 352 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1895,6 +1895,240 @@ function getDevToolsMiddleware(options, isDebuggerConnected) {
}"
`;
exports[`Inject to devtoolsMiddleware of React Native packager inject / revert in @react-native-community/cli-server-api (0.71.8 - v10.1.1) 1`] = `
"\\"use strict\\";
Object.defineProperty(exports, \\"__esModule\\", {
value: true
});
exports.default = getDevToolsMiddleware;
function _cliTools() {
const data = require(\\"@react-native-community/cli-tools\\");
_cliTools = function () {
return data;
};
return data;
}
function _child_process() {
const data = require(\\"child_process\\");
_child_process = function () {
return data;
};
return data;
}
/**
* 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.
*/
function launchDefaultDebugger(host, port, args = '') {
const hostname = host || 'localhost';
const debuggerURL = \`http://\${hostname}:\${port}/debugger-ui\${args}\`;
_cliTools().logger.info('Launching Dev Tools...');
(0, _cliTools().launchDebugger)(debuggerURL);
}
function escapePath(pathname) {
// \\" Can escape paths with spaces in OS X, Windows, and *nix
return \`\\"\${pathname}\\"\`;
}
function launchDevTools({
host,
port,
watchFolders
}, isDebuggerConnected) {
// Explicit config always wins
const customDebugger = process.env.REACT_DEBUGGER;
if (customDebugger) {
startCustomDebugger({
watchFolders,
customDebugger
});
} else if (!isDebuggerConnected()) {
// Debugger is not yet open; we need to open a session
launchDefaultDebugger(host, port);
}
}
function startCustomDebugger({
watchFolders,
customDebugger
}) {
const folders = watchFolders.map(escapePath).join(' ');
const command = \`\${customDebugger} \${folders}\`;
_cliTools().logger.info('Starting custom debugger by executing:', command);
(0, _child_process().exec)(command, function (error) {
if (error !== null) {
_cliTools().logger.error('Error while starting custom debugger:', error.stack || '');
}
});
}
function getDevToolsMiddleware(options, isDebuggerConnected) {
return function devToolsMiddleware(_req, res) {
launchDevTools(options, isDebuggerConnected);
res.end('OK');
};
}
//# sourceMappingURL=devToolsMiddleware.js.map"
`;
exports[`Inject to devtoolsMiddleware of React Native packager inject / revert in @react-native-community/cli-server-api (0.71.8 - v10.1.1) 2`] = `
"\\"use strict\\";
Object.defineProperty(exports, \\"__esModule\\", {
value: true
});
exports.default = getDevToolsMiddleware;
function _cliTools() {
const data = require(\\"@react-native-community/cli-tools\\");
_cliTools = function () {
return data;
};
return data;
}
function _child_process() {
const data = require(\\"child_process\\");
_child_process = function () {
return data;
};
return data;
}
/**
* 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.
*/
function launchDefaultDebugger(host, port, args = '') {
const hostname = host || 'localhost';
const debuggerURL = \`http://\${hostname}:\${port}/debugger-ui\${args}\`;
_cliTools().logger.info('Launching Dev Tools...');
(0, _cliTools().launchDebugger)(debuggerURL);
}
function escapePath(pathname) {
// \\" Can escape paths with spaces in OS X, Windows, and *nix
return \`\\"\${pathname}\\"\`;
}
function launchDevTools({
host,
port,
watchFolders
}, isDebuggerConnected) {
// Explicit config always wins
const customDebugger = process.env.REACT_DEBUGGER;
if (customDebugger) {
startCustomDebugger({
watchFolders,
customDebugger
});
} else if (!isDebuggerConnected()) {
// Debugger is not yet open; we need to open a session
launchDefaultDebugger(host, port);
}
}
function startCustomDebugger({
watchFolders,
customDebugger
}) {
const folders = watchFolders.map(escapePath).join(' ');
const command = \`\${customDebugger} \${folders}\`;
_cliTools().logger.info('Starting custom debugger by executing:', command);
(0, _child_process().exec)(command, function (error) {
if (error !== null) {
_cliTools().logger.error('Error while starting custom debugger:', error.stack || '');
}
});
}
function getDevToolsMiddleware(options, isDebuggerConnected) {
return function devToolsMiddleware(_req, res) {
launchDevTools(options, isDebuggerConnected);
res.end('OK');
};
}
//# sourceMappingURL=devToolsMiddleware.js.map"
`;
exports[`Inject to devtoolsMiddleware of React Native packager inject / revert in @react-native-community/cli-server-api (0.71.8 - v10.1.1) 3`] = `
"\\"use strict\\";
Object.defineProperty(exports, \\"__esModule\\", {
value: true
});
exports.default = getDevToolsMiddleware;
function _cliTools() {
const data = require(\\"@react-native-community/cli-tools\\");
_cliTools = function () {
return data;
};
return data;
}
function _child_process() {
const data = require(\\"child_process\\");
_child_process = function () {
return data;
};
return data;
}
/**
* 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.
*/
function launchDefaultDebugger(host, port, args = '') {
const hostname = host || 'localhost';
const debuggerURL = \`http://\${hostname}:\${port}/debugger-ui\${args}\`;
_cliTools().logger.info('Launching Dev Tools...');
(0, _cliTools().launchDebugger)(debuggerURL);
}
function escapePath(pathname) {
// \\" Can escape paths with spaces in OS X, Windows, and *nix
return \`\\"\${pathname}\\"\`;
}
function launchDevTools({
host,
port,
watchFolders
}, isDebuggerConnected) {
// Explicit config always wins
const customDebugger = process.env.REACT_DEBUGGER;
if (customDebugger) {
startCustomDebugger({
watchFolders,
customDebugger
});
} else if (!isDebuggerConnected()) {
// Debugger is not yet open; we need to open a session
launchDefaultDebugger(host, port);
}
}
function startCustomDebugger({
watchFolders,
customDebugger
}) {
const folders = watchFolders.map(escapePath).join(' ');
const command = \`\${customDebugger} \${folders}\`;
_cliTools().logger.info('Starting custom debugger by executing:', command);
(0, _child_process().exec)(command, function (error) {
if (error !== null) {
_cliTools().logger.error('Error while starting custom debugger:', error.stack || '');
}
});
}
function getDevToolsMiddleware(options, isDebuggerConnected) {
return function devToolsMiddleware(_req, res) {
launchDevTools(options, isDebuggerConnected);
res.end('OK');
};
}
//# sourceMappingURL=devToolsMiddleware.js.map"
`;
exports[`Inject to devtoolsMiddleware of React Native packager inject / revert in react-native 0.49 1`] = `
"/**
* Copyright (c) 2015-present, Facebook, Inc.
Expand Down
Loading

0 comments on commit cd83c5d

Please sign in to comment.