git commit -m "测试提交代码" npm ERR! Missing script: "test" npm ERR! npm ERR! To see a list of scripts, run: npm ERR! npm run
时间: 2023-11-30 16:42:35 浏览: 311
commit-check:一些git钩子检查提交消息
git commit -m "测试提交代码"是提交代码的命令,其中“测试提交代码”是提交信息。而在执行该命令之前,需要先在项目中添加一个名为“test”的脚本命令。可以在package.json文件中的“scripts”字段中添加“test”命令,例如:
```json
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
```
然后在命令行中执行npm run test即可执行该脚本命令。如果想要查看所有可用的脚本命令,可以执行npm run命令。
阅读全文