@@ -79,9 +79,6 @@ Below is a list of all available snippets and the triggers of each one. The `░
7979| Trigger | Result |
8080| -------: | ----------------------------------------------------------------- |
8181| ` iv→ ` | ` import { it, expect, describe } from 'vitest'█ ` |
82- | ` itl→ ` | ` import { render, screen } from '@testing-library/░<react\|vue>█ ` |
83- | ` itr→ ` | ` import { render, screen } from '@testing-library/react█ ` |
84- | ` itv→ ` | ` import { render, screen } from '@testing-library/vue█ ` |
8582
8683### Setup
8784
@@ -99,6 +96,7 @@ Below is a list of all available snippets and the triggers of each one. The `░
9996| Trigger | Result |
10097| -------: | ---------------------------------------------------------------------- |
10198| ` d→ ` | <code >describe('░group', () => {<br />  ;  ; █<br />})</code > |
99+ | ` desc→ ` | <code >describe('░group', () => {<br />  ;  ; █<br />})</code > |
102100| ` do→ ` | <code >describe.only('░group', () => {<br />  ;  ; █<br />})</code > |
103101| ` ds→ ` | <code >describe.skip('░group', () => {<br />  ;  ; █<br />})</code > |
104102
@@ -122,9 +120,10 @@ Below is a list of all available snippets and the triggers of each one. The `░
122120| Trigger | Result |
123121| -------: | ------------------------------------------------------------------ |
124122| ` i→ ` | <code >it('░should', () => {<br />  ;  ; █<br />})</code > |
123+ | ` it→ ` | <code >it('░should', () => {<br />  ;  ; █<br />})</code > |
125124| ` io→ ` | <code >it.only('░should', () => {<br />  ;  ; █<br />})</code > |
126125| ` is→ ` | <code >it.skip('░should', () => {<br />  ;  ; █<br />})</code > |
127- | ` it →` | ` it.todo('░should')█ ` |
126+ | ` itd →` | ` it.todo('░should')█ ` |
128127| ` ia→ ` | <code >it('░should', async () => {<br />  ;  ; █<br />})</code > |
129128
130129### Test
@@ -134,7 +133,7 @@ Below is a list of all available snippets and the triggers of each one. The `░
134133| ` t→ ` | <code >test('░should', () => {<br />  ;  ; █<br />})</code > |
135134| ` to→ ` | <code >test.only('░should', () => {<br />  ;  ; █<br />})</code > |
136135| ` ts→ ` | <code >test.skip('░should', () => {<br />  ;  ; █<br />})</code > |
137- | ` tt →` | ` test.todo('░should')█ ` |
136+ | ` ttd →` | ` test.todo('░should')█ ` |
138137| ` ta→ ` | <code >test('░should', async () => {<br />  ;  ; █<br />})</code > |
139138
140139### Expect
0 commit comments