我想在服务器中配置npm test
。当我运行npm test
时,它会调用react-scripts test
,这会触发一个提示窗口(附加屏幕)。如何避免出现提示,并在服务器中运行所有测试用例。
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "./node_modules/.bin/eslint ."
},
答案 0 :(得分:13)
要运行所有测试,请使用"test": "react-scripts test --watchAll=false"
答案 1 :(得分:0)
要运行所有测试时,可以使用npm test --watchAll
答案 2 :(得分:0)
您可以只更新您的package.json,并在脚本部分中使用“ test”:“ jest”来更新测试之一
它应该运行项目中可以找到的每个测试文件
答案 3 :(得分:0)