Hi folks, how does one filter javascript test in a...
# javascript
a
Hi folks, how does one filter javascript test in a KMP project with gradle?
Copy code
./gradlew jsTest --tests integration.*
Throws with
Copy code
Unknown command-line option '--tests'.
Copy code
./gradlew jsBrowserTest --tests integration.*
runs all the tests (does not filter)
Copy code
./gradlew jsNodeTest --tests integration.*
runs all the tests (does not filter)
b
Run a single test via IDE gutter icon (green "play" arrow) and inspect what command exactly IDE executes 😉
a
It still runs all tests
b
Ah yes. Filtering currently only works for legacy backend.
a
I see, No wonder I had a feeling that it used to work at one point. Thanks ya'll. I have upvoted