Skip to content

Instantly share code, notes, and snippets.

@greenhat
Created March 24, 2020 16:13
Show Gist options
  • Save greenhat/62f39daaea827aa0b447fa27b41099c4 to your computer and use it in GitHub Desktop.
Save greenhat/62f39daaea827aa0b447fa27b41099c4 to your computer and use it in GitHub Desktop.
VSCode test task to run bloop test
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "my tests",
"command": "bloop test [YOURPROJECT]-test --propagate",
"group": "test",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": true
},
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment