Question :
what semantic commit message type should i use for adding unit test cases? like Udin.test.js
,
feat
, chore
, or update
?
semantic commit message type for adding unit testing [closed]
Asked Answered
By "semantic commit message" you are probably referring to Conventional Commits. In that case, the answer is in the summary:
- types other than
fix:
andfeat:
are allowed, for example @commitlint/config-conventional (based on the the Angular convention) recommendsbuild:
,chore:
,ci:
,docs:
,style:
,refactor:
,perf:
,test:
, and others.
So, use test:
for adding test cases.
© 2022 - 2024 — McMap. All rights reserved.