tasks.json

 1// Taken from https://gist.github.com/josevalim/2e4f60a14ccd52728e3256571259d493#gistcomment-4995881
 2[
 3  {
 4    "label": "mix test",
 5    "command": "mix",
 6    "args": ["test"]
 7  },
 8  {
 9    "label": "mix test --failed",
10    "command": "mix",
11    "args": ["test", "--failed"]
12  },
13  {
14    "label": "mix test $ZED_SYMBOL",
15    "command": "mix",
16    "args": ["test", "$ZED_SYMBOL"]
17  },
18  {
19    "label": "mix test $ZED_FILE:$ZED_ROW",
20    "command": "mix",
21    "args": ["test", "$ZED_FILE:$ZED_ROW"]
22  },
23  {
24    "label": "Elixir: break line",
25    "command": "iex",
26    "args": ["-S", "mix", "test", "-b", "$ZED_FILE:$ZED_ROW"]
27  }
28]