/
githubmirror
/
jest
Обзор
Документация
Войти
/
githubmirror
/
jest
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
e2e/read-initial-options/readOptions.js
22 строки
614 B
Simen Bekkhus
chore: errors should be named as such (#14817)
30 дек 2023, 14:05
Не верифицирован
30 дек 2023, 14:05
2ddc430
Код
Авторство
О чём код?
/** * 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. */ const {readInitialOptions} = require('jest-config'); async function readConfig() { let config = process.argv[2]; let options = undefined; if (config === '') { config = undefined; } if (process.argv[3]) { options = JSON.parse(process.argv[3]); } console.log(JSON.stringify(await readInitialOptions(config, options))); } readConfig().catch(error => { console.error(error); process.exitCode = 1; });