hbenl / vscode-test-explorer

The VS Code Test Explorer extension
MIT License
215 stars 55 forks source link

Using natural sorting so numbers. #249

Open jaytaph opened 1 year ago

jaytaph commented 1 year ago

This PR will enable the natural sort when sorting tests. Without this, the sorting of tests would be

test_1
test_10
test_11
test_9

With the natural sorting, the tests are in correct order:

test_1
test_9
test_10
test_11