10

is there a way in vscode with metals scala plugin, run specific test scenario ? Like in IntelliJ ?

Viktor Hedefalk
  • 3,572
  • 3
  • 33
  • 48
FrancMo
  • 2,459
  • 2
  • 19
  • 39

1 Answers1

1

If you mean specific test clause in say a scalatest class, I'm pretty sure the answer is "no".

Workaround could be to add a launch configuration and pass args to just run the test you want with -z: https://scalameta.org/metals/docs/editors/vscode.html#via-a-launchjson-configuration

Or just ignore-tag the others.

Viktor Hedefalk
  • 3,572
  • 3
  • 33
  • 48