tasks.json 363 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{
  "version": "0.1.0",
  "command": "flutter",
  "args": [],
  "showOutput": "always",
  "echoCommand": true,
  "tasks": [
    {
      // Assign key binding to workbench.action.tasks.test to quickly run 
      // the currently open test. 
      "taskName": "test",
      "isTestCommand": true,
      "isShellCommand": true,
      "args": ["${file}"]
    }
  ]
}