it’s probably a known issue that when you run part...
# spek
c
it’s probably a known issue that when you run parts of a spec (click the green arrow next to a describe, e.g.), it still runs other parts of the test.. ?
h
are you using our test runner or something else?
c
Yes. I have the plugin installed, using the runner. Cedric came on one night and I shared an example repo and of course his solution was to just port it to kobalt and back to Junit 4.x and sure enough from the command line tests ran in < 1s. (I knew that.)
but I want to write some code, hit a key combo, rerun… rinse/repeat..
wait sorry Hadi, I was thinking maybe you were asking because of my earlier comment about incremental compilation not working.. (idiot)
ok on this other one
I have a test that dumps a large doc to the console, from inside a describe block, I run this other test and that file still goes to the console...
Also, why not let me rerun individual tests from inside the runner? think that would be useful
m
Same problem, you can't run a test
it("...") { ... }
in isolation, everything inside the class is executed
r
Are the `it`s inside an
on
block? If yes, it's a known issue.
c
yes they are inside an on block
ok thanks