2022-12-23 12:03:25 +00:00
|
|
|
#!/usr/bin/env node
|
|
|
|
/**
|
2024-04-22 11:47:34 +00:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2022-12-23 12:03:25 +00:00
|
|
|
*
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const importLocal = require('import-local');
|
|
|
|
|
|
|
|
if (!importLocal(__filename)) {
|
|
|
|
require('jest-cli/bin/jest');
|
|
|
|
}
|