lazytest

2024-09-22T01:26:59.890609Z

@nbtheduke has joined the channel

2024-09-22T01:28:54.913529Z

set the channel description: Discussion of the standalone test framework Lazytest https://github.com/noahtheduke/lazytest

2024-09-22T01:29:12.883419Z

a little sneak-peak of what i'm working on:

(given [state (volatile! [])]
    (describe "not order dependent"
      {:context [(after (vswap! state conj :after))
                 (before (vswap! state conj :before))]}
      (expect-it "temp" true))
    (expect-it "tracks correctly"
      (= [:before :after] @state)))