Skip to content

Instantly share code, notes, and snippets.

@giokaxo
Created December 8, 2022 10:51
Show Gist options
  • Select an option

  • Save giokaxo/0fc0d6b85e7f32be704541485521366a to your computer and use it in GitHub Desktop.

Select an option

Save giokaxo/0fc0d6b85e7f32be704541485521366a to your computer and use it in GitHub Desktop.
Run current test VS Code Task
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command": "yarn",
"args": [
{
"value": "test:unit",
"quoting": "strong"
},
{
"value": "${relativeFile}",
"quoting": "strong"
}
],
"label": "Run current test",
"detail": "vitest run",
"problemMatcher": [
"$vite"
],
"options": {
"cwd": "${workspaceFolder}"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment