Skip to content

Instantly share code, notes, and snippets.

@jmaicaaan
Last active November 28, 2020 15:14
Show Gist options
  • Save jmaicaaan/7980a1b1f7d7b98fd8799f12e995ecee to your computer and use it in GitHub Desktop.
Save jmaicaaan/7980a1b1f7d7b98fd8799f12e995ecee to your computer and use it in GitHub Desktop.
"Jest Describe Full": {
"prefix": "jest#describe-full",
"body": [
"describe('$1', () => {",
" describe('happy paths', () => {",
" it('should return the value', () => {",
" expect(1).toBeTruthy();",
" });",
" });",
" describe('exception paths', () => {",
" it('should return an error', () => {",
" expect(false).toBeFalsy();",
" });",
" });",
"});"
],
"description": "Jest Describe Full"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment