connorshea / vscode-ruby-test-adapter

A Ruby test adapter extension for the VS Code Test Explorer
https://marketplace.visualstudio.com/items?itemName=connorshea.vscode-ruby-test-adapter
MIT License
83 stars 50 forks source link

Remove colon from Minitest test names #62

Closed jochenseeber closed 3 years ago

jochenseeber commented 3 years ago

Some extensions prefix test names with 'test_: '. Currently this would lead to ugly test names (': '). This patch removes the colon as well as any white space from the beginning of the test name.

One extension that does this is e.g. https://github.com/thoughtbot/shoulda-context (used by +15.5K)

connorshea commented 3 years ago

Thanks!