Skip to content

Commit

Permalink
Console message fixed for devtools (facebook#23067)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewcovenant committed Jan 5, 2022
1 parent 42c30e8 commit fe41934
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/circleci/run_devtools_e2e_tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function runTestShell() {
});
serverProcess.stderr.on('data', data => {
if (`${data}`.includes('EADDRINUSE')) {
// Something is occuprying this port;
// Something is occupying this port;
// We could kill the process and restart but probably better to prompt the user to do this.

logError('Free up the port and re-run tests:');
Expand Down
2 changes: 1 addition & 1 deletion scripts/devtools/build-and-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ async function downloadLatestReactBuild() {
const buildID = match[1];

console.log('');
console.log(`Downloaded artiacts for CI build ${chalk.bold(buildID)}.`);
console.log(`Downloaded artifacts for CI build ${chalk.bold(buildID)}.`);

return buildID;
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/flow/runFlow.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ async function runFlow(renderer, args) {
fs.unlinkSync(destPath);
fs.copyFileSync(srcPath, destPath);
// Set the mtime of the copied file to be same as the original file,
// so that the ahove check works.
// so that the above check works.
fs.utimesSync(destPath, srcStat.atime, srcStat.mtime);
}
} else {
Expand Down
2 changes: 1 addition & 1 deletion scripts/jest/jest-cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ function getEnvars() {
? 'experimental'
: 'stable',

// Pass this flag through to the confit environment
// Pass this flag through to the config environment
// so the base config can conditionally load the console setup file.
compactConsole: argv.compactConsole,
};
Expand Down

0 comments on commit fe41934

Please sign in to comment.