Skip to content

Instantly share code, notes, and snippets.

@kant01ne
Created February 19, 2021 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kant01ne/ae6c0ba190c0a1fda7a4a11f9d59235c to your computer and use it in GitHub Desktop.
Save kant01ne/ae6c0ba190c0a1fda7a4a11f9d59235c to your computer and use it in GitHub Desktop.
VSCode page.screen.code-snippets
{
// Place your supertokens-auth-react workspace snippets here. Each snippet is defined under a snippet name and has a scope, prefix, body and
// description. Add comma separated ids of the languages where the snippet is applicable in the scope field. If scope
// is left empty or omitted, the snippet gets applied to all languages. The prefix is what is
// used to trigger the snippet and the body will be expanded and inserted. Possible variables are:
// $1, $2 for tab stops, $0 for the final cursor position, and ${1:label}, ${2:another} for placeholders.
// Placeholders with the same ids are connected.
// Example:
"Comment Block": {
"scope": "javascript,javascriptreact,typescriptreact,typescript,html",
"prefix": "cmtblock",
"body": [
"$BLOCK_COMMENT_START",
" * $1",
" $BLOCK_COMMENT_END"
],
"description": "Comment Block"
},
"Is Undefined block": {
"scope": "javascript, typescript",
"prefix": "isundefined",
"body": [
"if ($1 === undefined) {",
"\t$2",
"}",
"$3"
],
"description": "Comment Block"
},
"Puppeteer page screenshot": {
"scope": "javascript,typescript",
"prefix": "ppscreen",
"body": [
"await page.screenshot({path: 'screenshot.jpeg'});",
],
"description": "Puppeteer page screenshot"
},
"Puppeteer Page wait for navigation": {
"scope": "javascript",
"prefix": "ppidle",
"body": [
"await page.waitForNavigation({ waitUntil: \"networkidle0\" });",
],
"description": "Puppeteer Page wait for navigation"
},
"Puppeteer parallel with wait for navigation": {
"scope": "javascript",
"prefix": "ppidleparrallel",
"body": [
"await Promise.all([",
"\t$1,",
"\tpage.waitForNavigation({ waitUntil: \"networkidle0\" })",
"]);",
],
"description": "Puppeteer Page wait for navigation parallel"
},
"Puppeteer assert pathname": {
"scope": "javascript",
"prefix": "ppassertpathname",
"body": [
"const pathname = await page.evaluate(() => window.location.pathname);",
"assert.deepStrictEqual(pathname, \"$1\");",
],
"description": "Puppeteer assert pathname"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment