docs: update docs regarding tests and conventional commits

This commit is contained in:
Fernando Fernández
2022-05-02 10:06:01 +02:00
committed by Thibault
parent 76ef70e063
commit 1eee925c74
+1 -17
View File
@@ -27,13 +27,7 @@ Unattended pull requests will be marked as stale after a period of 90 days witho
## Conventions
This repository uses the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) convention for commit messages. In order to help you with writing commit messages, we provide [Commitizen](https://github.com/commitizen/cz-cli) support in the repository.
The following should guide you through making a proper commit message:
```bash
npx cz
```
This repository uses the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) convention for commit messages.
### Code style
@@ -71,13 +65,3 @@ describe('mixin: myMixin', () => {
});
});
```
#### Vuex stores
```typescript
describe('vuex: storeName', () => {
it('sets this value when myAction is dispatched', () => {
// Your test logic goes here
});
});
```