semantic commit message type for adding unit testing [closed]
Asked Answered
R

1

6

Question : what semantic commit message type should i use for adding unit test cases? like Udin.test.js, feat , chore , or update ?

Renayrenckens answered 31/5, 2021 at 2:46 Comment(0)
M
14

By "semantic commit message" you are probably referring to Conventional Commits. In that case, the answer is in the summary:

  1. types other than fix: and feat: are allowed, for example @commitlint/config-conventional (based on the the Angular convention) recommends build:, chore:, ci:, docs:, style:, refactor:, perf:, test:, and others.

So, use test: for adding test cases.

Melanimelania answered 31/5, 2021 at 3:24 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.