mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
2d68a733f8
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/52364 Changelog: [Internal] D76512374 broke error reporting in `run-ci-javascript-tests.js`. This is partly because the file was untyped and we missed that the `.code` check on the result of `execSync` was always going to be falsy. Also, `execSync`'s default error handling mechanism is not human-friendly - it throws an `Error` with `Buffer`s for stdout and stderr (see [example](https://github.com/facebook/react-native/actions/runs/16003656383/job/45144825919?pr=52357&fbclid=IwY2xjawLRyfpleHRuA2FlbQIxMQBicmlkETFZSG1xeWhTWWczR1paS0lKAR4pF46Z-J2CbSk7YdHZJ-N3F9eQJ7hR4EowfLV6mUtzMLg8j-EWdZiGY1la6A_aem_1Zbvn6fD5NS9YO-B7QJssg)). Here, I'm adding types, removing dead code and preserving stdout and stderr from all child processes in a human-readable format. Reviewed By: huntie Differential Revision: D77648312 fbshipit-source-id: c6d98e668d6edf15729fa02fecb3408b9dd6debc
112 lines
3.0 KiB
JavaScript
112 lines
3.0 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @flow strict-local
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
/**
|
|
* This script runs JavaScript tests.
|
|
* Available arguments:
|
|
* --maxWorkers [num] - how many workers, default 1
|
|
* --jestBinary [path] - path to jest binary, defaults to local node modules
|
|
* --yarnBinary [path] - path to yarn binary, defaults to yarn
|
|
* --flowBinary [path] - path to flow binary, defaults to running `yarn run flow-check`
|
|
*/
|
|
|
|
const {execSync} = require('child_process');
|
|
// $FlowFixMe[unclear-type]
|
|
const argv = require('yargs').argv /*:: as any as $ReadOnly<{
|
|
maxWorkers?: number,
|
|
jestBinary?: string,
|
|
flowBinary?: string,
|
|
yarnBinary?: string,
|
|
}> */;
|
|
|
|
const numberOfMaxWorkers = argv.maxWorkers ?? 1;
|
|
|
|
const JEST_BINARY = argv.jestBinary ?? './node_modules/.bin/jest';
|
|
const FLOW_BINARY = argv.flowBinary;
|
|
const YARN_BINARY = argv.yarnBinary ?? 'yarn';
|
|
|
|
class ExecError extends Error {
|
|
constructor(cause /*: Error */) {
|
|
super(cause.message, {cause});
|
|
this.name = 'ExecError';
|
|
}
|
|
}
|
|
|
|
function describe(message /*: string */) {
|
|
console.log(`\n\n>>>>> ${message}\n\n\n`);
|
|
}
|
|
|
|
try {
|
|
console.log('Executing JavaScript tests');
|
|
|
|
describe('Test: feature flags codegen');
|
|
execAndLog(`${YARN_BINARY} run featureflags --verify-unchanged`);
|
|
describe('Test: eslint');
|
|
execAndLog(`${YARN_BINARY} run lint`);
|
|
describe('Test: No JS build artifacts');
|
|
execAndLog(`${YARN_BINARY} run build --validate`);
|
|
|
|
describe('Test: Validate JS API snapshot');
|
|
execAndLog(`${YARN_BINARY} run build-types --validate`);
|
|
|
|
describe('Test: Flow check');
|
|
const flowCommand =
|
|
FLOW_BINARY == null
|
|
? `${YARN_BINARY} run flow-check`
|
|
: `${FLOW_BINARY} check`;
|
|
execAndLog(flowCommand);
|
|
|
|
/*
|
|
* Build @react-native/codegen and @react-native/codegen-typescript-test
|
|
*
|
|
* The typescript-test project use TypeScript to write test cases
|
|
* In order to make these tests discoverable to jest
|
|
* *-test.ts must be compiled to *-test.js before running jest
|
|
*/
|
|
|
|
describe('Test: Build @react-native/codegen');
|
|
execAndLog(`${YARN_BINARY} --cwd ./packages/react-native-codegen run build`);
|
|
describe('Test: Build @react-native/codegen-typescript-test');
|
|
execAndLog(
|
|
`${YARN_BINARY} --cwd ./private/react-native-codegen-typescript-test run build`,
|
|
);
|
|
|
|
describe('Test: Jest');
|
|
execAndLog(
|
|
`${JEST_BINARY} --maxWorkers=${numberOfMaxWorkers} --ci --reporters="default" --reporters="jest-junit"`,
|
|
);
|
|
|
|
describe('Test: TypeScript tests');
|
|
execAndLog(`${YARN_BINARY} run test-typescript`);
|
|
} catch (e) {
|
|
if (e instanceof ExecError) {
|
|
console.error(e.message);
|
|
process.exitCode = 1;
|
|
} else {
|
|
throw e;
|
|
}
|
|
} finally {
|
|
console.log('Finished.');
|
|
}
|
|
|
|
function execAndLog(command /*: string */) {
|
|
console.log(`Executing: ${command}`);
|
|
try {
|
|
execSync(command, {
|
|
stdio: ['ignore', 'inherit', 'inherit'],
|
|
encoding: 'utf8',
|
|
});
|
|
} catch (e) {
|
|
throw new ExecError(e);
|
|
}
|
|
}
|