Just tested version `1.0.0`, works very well. My t...
# spek
s
Just tested version
1.0.0
, works very well. My two cents: I like the semantics of "`given` /
on
/ `it`" or just "`given` / `it`". Will Spek allow to choose between
given
/
on
or is it just in spek 1.0.0 to facilitate the transition to
describe
? I would really like
given
and
on
to stay 😉 But if they do, I think they should be an alias with the addition of the keyword at the beginning of the describe string. (e.g. :
given(description, block)
should be an alias to
describe("Given " + description, block)
). Right now, when I use
given("a calculator")
, the test runner displays "a calculator" while I wish it displayed "Given a calculator".
👍 1