Skip to content

ajoelp/vscode-test-runner

Repository files navigation

Test Runner

Extensions commands

{
  "command": "test-runner.run",
  "title": "Run test file"
},
{
  "command": "test-runner.runLast",
  "title": "Rerun last test"
},
{
  "command": "test-runner.runHistory",
  "title": "Rerun test from history"
}

Extension default keybindings

{
  "command": "test-runner.run",
  "key": "ctrl+r t"
},
{
  "command": "test-runner.runLast",
  "key": "ctrl+r r"
},
{
  "command": "test-runner.runHistory",
  "key": "ctrl+r h"
}

Currently supported languages

  • Javascript/Typescript (jest)
  • PHP (Phpunit)