@nbtheduke has joined the channel
set the channel description: Discussion of the standalone test framework Lazytest https://github.com/noahtheduke/lazytest
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)))