问题:
我应该使用什么语义提交消息类型来添加单元测试用例?像Udin.test.js
,
feat
, chore
, 还是update
?
问问题
651 次
1 回答
2
通过“语义提交消息”,您可能指的是Conventional Commits。在这种情况下,答案在摘要中:
fix:
允许使用和以外的类型feat:
,例如 @commitlint/config-conventional (基于 Angular 约定)推荐build:
,chore:
,ci:
,docs:
,style:
,refactor:
,perf:
,test:
等。
因此,test:
用于添加测试用例。
于 2021-05-31T03:24:14.283 回答