Skip to content

Instantly share code, notes, and snippets.

@jimpriest
Created February 10, 2019 18:18
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 jimpriest/e71f8ef7d9bd80db086fa1f48c394436 to your computer and use it in GitHub Desktop.
Save jimpriest/e71f8ef7d9bd80db086fa1f48c394436 to your computer and use it in GitHub Desktop.
Run TestBox unit tests via VSCode Task
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "Run tests",
"command": "Chrome",
"windows": {
"command": "C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe"
},
"args": [
"http://ims.local/_tests"
],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment