Created
November 26, 2021 12:28
-
-
Save hmble/e8f7419b69faab1057300bc34324023c to your computer and use it in GitHub Desktop.
Vscode snippet for jest
This file contains 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 test component": { | |
"scope": "typescriptreact", | |
"prefix": "sdt", | |
"body": [ | |
"import {render, act} from \"@/tests/testUtil\";\nimport userEvent from \"@testing-library/user-event\"; \n\n", | |
"describe(\"${TM_FILENAME_BASE/(.test)//}\", () => {", | |
"\t test(\"$1\", () => {", | |
"\t\t$2});", | |
"\t});" | |
], | |
"description": "Jest test util snippet" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment