8000 feat(mocha) update readme · andrew-codes/vscode-snippets@aabb89a · GitHub
[go: up one dir, main page]

Skip to content

Commit aabb89a

Browse files
committed
feat(mocha) update readme
1 parent 4110fd6 commit aabb89a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

packages/mocha-snippets/README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,21 @@ test('$1', () => {
7676
$2
7777
});
7878
```
79+
### it (`it`)
80+
```javascript
81+
it('$1', () => {
82+
$2
83+
}$0
84+
```
85+
### describe (`dsc`)
86+
```javascript
87+
describe('$1', () => {
88+
$2
89+
}$0
90+
```
91+
### context (`ctx`)
92+
```javascript
93+
context('$1', () => {
94+
$2
95+
}$0
96+
```

0 commit comments

Comments
 (0)
0