Skip to content

Commit

Permalink
Update VSCode task to launch tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomthom committed May 24, 2018
1 parent 3fe48cf commit 4c58791
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "bundle",
"isShellCommand": true,
"showOutput": "always",
"echoCommand": true,
"args": ["exec", "rake"],
"tasks": [{
"taskName": "test",
"args": ["TEST=${relativeFile}"],
"isTestCommand": true,
"isBuildCommand": true
}]
"version": "2.0.0",
"tasks": [
{
"label": "rake test FILE",
"type": "shell",
"command": "bundle",
"args": [
"exec",
"rake",
"TEST=${relativeFile}"
],
"group": "test"
}
]
}

0 comments on commit 4c58791

Please sign in to comment.