python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
In kotest is there a way to have a "before" hook run once for a TestContainer it's in?
I'm trying to use Kotest to write nested tests that have hooks that only run once per nest level. This is how mocha works in JavaScript and how RSpec works in ruby. In mocha the function is called b...
Bryan
Votes: 0
Answers: 0
kotest equivalent to usingElementComparatorIgnoringFields from assertJ
assertJ allows you to check for element-wise list equality while ignoring user specified fields like so
assertThat(listOfObjects)
.usingElementComparatorIgnoringFields("field1", "fi...
mooglin
Votes: 0
Answers: 1