Skip to content

Instantly share code, notes, and snippets.

@zulhfreelancer
Last active March 18, 2021 07:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zulhfreelancer/9aeb214ce7c4b9d00241f7cd333637e3 to your computer and use it in GitHub Desktop.
Save zulhfreelancer/9aeb214ce7c4b9d00241f7cd333637e3 to your computer and use it in GitHub Desktop.
My VS Code Global Snippets
// Useful tool:
// https://snippet-generator.app
{
"Go Test": {
"prefix": "test",
"body": [
"func Test(t *testing.T) {",
" //$1",
"}",
""
],
"description": "Go Test"
},
"Gingko It": {
"prefix": "it",
"body": [
"It(\"$1\", func() {",
" $2",
"})"
],
"description": "Gingko It"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment