Skip to content

Instantly share code, notes, and snippets.

@lildesert
Last active December 8, 2022 21:06
Show Gist options
  • Save lildesert/dd574606e6acf639cabcb04a4249fafa to your computer and use it in GitHub Desktop.
Save lildesert/dd574606e6acf639cabcb04a4249fafa to your computer and use it in GitHub Desktop.
VSCode tasks to launch tests
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "launch tests for current file",
"type": "shell",
"group": "test",
"command": "nx test ${input:packageName} --test-file ${file}",
"problemMatcher": [],
"presentation": { "clear": true }
},
{
"label": "launch test for current line",
"type": "shell",
"group": "test",
"command": "nx test ${input:packageName} --test-name-pattern ${input:testName}",
"problemMatcher": [],
"presentation": { "clear": true }
}
],
"inputs": [
{
"id": "testName",
"type": "command",
"command": "extension.commandvariable.transform",
"args": {
"text": "${command:extension.commandvariable.currentLineText}",
"find": ".*('.*').*",
"replace": "$1"
}
},
{
"id": "packageName",
"type": "command",
"command": "extension.commandvariable.transform",
"args": {
"text": "${file}",
"find": ".*packages/(.*?)/.*",
"replace": "$1"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment