lazytest

p-himik 2025-09-21T10:06:04.728439Z

Is there a way to report progress in situations like these:

(doseq [x large-coll]
  (let [result (some-long-running-fn x)]
    (expect (correct? result))))

2025-09-21T11:09:21.245689Z

make them expect-its?

2025-09-21T11:23:10.895089Z

hmm no that's not quite right

2025-09-21T11:25:49.272499Z

how would you show progress if this was clojure.test?