Skip to content

Commit 09bc2a5

Browse files
committed
chore: snippets
1 parent 1a895a7 commit 09bc2a5

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.vscode/vitest.code-snippets

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
// Place your vuefire workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
3+
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
4+
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
5+
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
6+
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
7+
// Placeholders with the same ids are connected.
8+
// Example:
9+
"New Describe case": {
10+
"scope": "javascript,typescript",
11+
"prefix": "describe",
12+
"body": [
13+
"describe('$1', () => {",
14+
" $0",
15+
"})"
16+
],
17+
"description": "Add a new describe case"
18+
},
19+
"New test case": {
20+
"scope": "javascript,typescript",
21+
"prefix": "it",
22+
"body": [
23+
"it('$1', ${2:async }() => {",
24+
" $0",
25+
"})"
26+
],
27+
"description": "Add a new test case"
28+
}
29+
}

0 commit comments

Comments
 (0)