Skip to content

Instantly share code, notes, and snippets.

@hmble
Created November 26, 2021 12:28
Show Gist options
  • Save hmble/e8f7419b69faab1057300bc34324023c to your computer and use it in GitHub Desktop.
Save hmble/e8f7419b69faab1057300bc34324023c to your computer and use it in GitHub Desktop.
Vscode snippet for jest
{
"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