gpt4 book ai didi

bash - 从 shell 脚本运行 Jest 测试 - 失败导致脚本退出

转载 作者:行者123 更新时间:2023-11-29 09:15:12 28 4
gpt4 key购买 nike

我有一个运行 jest 的普通 package.json使用 npm test 命令进行测试。 package.json 的相关部分如下所示:

{
"scripts": {
"test": "jest",
"jest": {
"scriptPreprocessor": "../shared/preprocessor.js"
}
}

shell 脚本如下所示:

script_dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
parent_dir="$script_dir/.."

echo
echo "Running all tests..."
find "$parent_dir" -name package.json -maxdepth 2 -execdir npm test \;

现在,当 Jest 测试失败时,bash 脚本不会以失败状态退出。我希望这样做是为了用 Jenkins 创建一个 CI 循环。 jest测试失败示例如下:

 FAIL  js/components/__tests__/ExperienceCampaign-tests.js (13.19s)
● ExperienceCampaign › listening to ExperienceCampaignStore › it starts listening when the component is mounted
- Expected: true toBe: false
at Spec.<anonymous> (/Users/jonathan/experience-studio/campaign/js/components/__tests__/ExperienceCampaign-tests.js:54:26)
at Timer.listOnTimeout [as ontimeout] (timers.js:112:15)
1 test failed, 0 tests passed (1 total)
Run time: 13.748s
npm ERR! Test failed. See above for more details.
npm ERR! not ok code 0

感谢任何帮助。

最佳答案

jest 有一个 --forceExit 标志,可用于...强制退出 :D。只需将它添加到您的脚本中即可。

您可能在测试中执行了一些没有及时返回回调的异步操作。可能想仔细看看。

{
"scripts": {
"test": "jest --forceExit",
"jest": {
"scriptPreprocessor": "../shared/preprocessor.js"
}
}

关于bash - 从 shell 脚本运行 Jest 测试 - 失败导致脚本退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31122598/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com