gpt4 book ai didi

javascript - 我们如何与 npm start 或 npm build 一起运行 jest 单元测试?

转载 作者:行者123 更新时间:2023-11-28 00:42:14 25 4
gpt4 key购买 nike

每次我们尝试运行 Jest 单元测试时,我们都必须运行 npm test。当我构建我的应用程序时(在 npm start 或 npm build 时)有什么方法可以运行这些测试

最佳答案

您可以像这样在 package.json 中组合多个步骤:

  "scripts": {
"start": "sh start.sh",
"test": "sh test.sh",
"test_start": "npm test && npm start"
}

在运行测试时,只需运行

npm run test_start

这将确保您的测试在开始运行之前成功。


希望这对您有所帮助!

关于javascript - 我们如何与 npm start 或 npm build 一起运行 jest 单元测试?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52755471/

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