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
6.2k views Asked by Blank At
1
Question :
what semantic commit message type should i use for adding unit test cases? like Udin.test.js
,
feat
, chore
, or update
?
By "semantic commit message" you are probably referring to Conventional Commits. In that case, the answer is in the summary:
So, use
test:
for adding test cases.