i basically have ``` val entryList by memoized { ....
# spek
n
i basically have
Copy code
val entryList by memoized { ... }
entryList.forEach { entry ->
    it("test a") {
        assert(entry.a)
    }
}
which breaks.. instead one has to not change the tests at runtime, which leads to loops inside the
it
or is there a third option i am missing ?
r
memoized
is for values you will use in your test, not for setting up a test.