Hey so I'm making use of <https://kotest.io/docs/f...
# kotest
f
Hey so I'm making use of https://kotest.io/docs/framework/datatesting/data-driven-testing.html What would be the best way to run individual tests? My list of tests and test names are stable. (See picture) when I right click a test I can't rerun a specific test. These tests are also from files, I would love to be able to double click the test name and for the file to open up. There's a
Rerun Failed Tests
button which is also useful, but I'm not sure how the failed test names are fed in so I can filter the tests being run. Thanks. Edit: I just realized I've been using a for loop over my input and just calling
test
multiple times. I tried
withData
and it's the same.