Skip to content

Instantly share code, notes, and snippets.

@albizures
Created June 17, 2019 21:23
Show Gist options
  • Save albizures/65fabce05a74b6b932526067c1e26258 to your computer and use it in GitHub Desktop.
Save albizures/65fabce05a74b6b932526067c1e26258 to your computer and use it in GitHub Desktop.
snippets
{
"it should": {
"prefix": "itShould",
"body": [
"it('should ${1}', () => {",
"\t${2:// body...}",
"})$3"
],
"description": "create a mocha `it`"
},
"describe": {
"prefix": "when",
"body": [
"describe('when ${1}', () => {",
"\t${2:// body...}",
"})$3"
],
"description": "create a mocha `describe`"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment