Skip to content

Commit

Permalink
feat: add template collections
Browse files Browse the repository at this point in the history
  • Loading branch information
equiman committed Aug 3, 2024
1 parent c70694c commit 1535ad8
Show file tree
Hide file tree
Showing 7 changed files with 962 additions and 1,290 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20.16.0
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ Fixed for any bug fixes.
Security to invite users to upgrade in case of vulnerabilities.
-->

## 1.8.0 - 2024/08/03

## Added

- Template collections
- `nvm` default version support

## Changed

- Bump `vitest` version

## 1.7.0 - 2023/04/18

### Added
Expand Down
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ The quick and easy way to create and use Vitest with [VS Code](https://code.visu
- [Expect](#expect)
- [Any](#any)
- [Assertion](#assertion)
- [Collection](#collection)
- [Keyboard](#keyboard)
- [Settings](#settings)
- [About](#about)
Expand Down Expand Up @@ -203,6 +204,12 @@ Below is a list of all available snippets and the triggers of each one. The `░
| `ttemis→` | <code>expect(() => {<br/>&nbsp;&nbsp;█<br/>}).toThrowErrorMatchingInlineSnapshot()</code> |
| `ttems→` | <code>expect(() => {<br/>&nbsp;&nbsp;█<br/>}).toThrowErrorMatchingSnapshot()</code> |

### Collection

| Trigger | Result |
| --------: | ------------------------------------------------------------------------------------------- |
| `vcb→` | <code>import { it, expect, describe } from 'vitest'<br/><br/>describe('░group', () => {<br/>&nbsp;&nbsp;it('░should', () => {<br/>&nbsp;&nbsp;&nbsp;&nbsp;const expected = '░expected'<br/>&nbsp;&nbsp;&nbsp;&nbsp;const actual = ░group(░argument)<br/>&nbsp;&nbsp;&nbsp;&nbsp;expect(actual).toBe(expected)█<br/>&nbsp;&nbsp;})<br />})</code> |

[Back to menu](#menu)

---
Expand Down
Loading

0 comments on commit 1535ad8

Please sign in to comment.