I'm trying to ignore a test, but it's still being ...
# test
a
I'm trying to ignore a test, but it's still being run. Any help on how can I do it?
m
Looks like JUnit, but which one? Or are you mix and matching versions? @Ignore is correct for JUnit4, but in JUnit5, it’s @Disabled. So depending on other things, you may have the wrong import for the engine you’re using.
a
Ahh, thank you! it's junit5!
m
Your welcome. Done it myself…