Skip to content

Instantly share code, notes, and snippets.

@alexlafroscia
Created October 7, 2016 01:19
Show Gist options
  • Save alexlafroscia/c6fc5b61a1009770bdced4b02554cdd8 to your computer and use it in GitHub Desktop.
Save alexlafroscia/c6fc5b61a1009770bdced4b02554cdd8 to your computer and use it in GitHub Desktop.
Run `ember test` from VS Code
{
"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