Last active
November 28, 2020 15:14
-
-
Save jmaicaaan/7980a1b1f7d7b98fd8799f12e995ecee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"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