Created
October 7, 2016 01:19
-
-
Save alexlafroscia/c6fc5b61a1009770bdced4b02554cdd8 to your computer and use it in GitHub Desktop.
Run `ember test` from VS Code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "ember test", | |
"type": "node", | |
"request": "launch", | |
"program": "${workspaceRoot}/node_modules/.bin/ember", | |
"args": ["test"], | |
"sourceMaps": false, | |
"outDir": null | |
}, | |
{ | |
"name": "ember test --serve", | |
"type": "node", | |
"request": "launch", | |
"program": "${workspaceRoot}/node_modules/.bin/ember", | |
"args": ["test", "--serve"], | |
"sourceMaps": false, | |
"outDir": null | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment