Using Intellij Ultimate on Windows, navigating to a test case and clicking green button on left side of it results in error visible in console:
zig.exe build test
info: access the help menu with "zig build -h"
error: no step named 'test'
From what it looks like, run configuration is automatically created as build type and it does not capture name of test to run. As of 0.16 in Zig you should be able to run specific test via command targeting your file and name of test:
zig test .\feature.zig --test-filter "many features"
I would like to be able to run particular test from IDE without using cli tooling, since it offers better experience. It would be even better if I would be able to debug such running test.
Using Intellij Ultimate on Windows, navigating to a test case and clicking green button on left side of it results in error visible in console:
```
zig.exe build test
info: access the help menu with "zig build -h"
error: no step named 'test'
```
From what it looks like, run configuration is automatically created as build type and it does not capture name of test to run. As of 0.16 in Zig you should be able to run specific test via command targeting your file and name of test:
```
zig test .\feature.zig --test-filter "many features"
```
I would like to be able to run particular test from IDE without using cli tooling, since it offers better experience. It would be even better if I would be able to debug such running test.