Tidbits tagged with #mocha (3)
Why a #mocha #test times out, when I write it like this: it('...', _ => {});
but it does NOT time out, when I write: it('...', () => {});
? Exactly, because the _
is the magic done
, that one needs to call.
Continue reading →
I had been fighting for the last years, always again to make WebStorm run all my tests the way I want. I moved tests into the src
folder then back into a tests
folder. The latter is painful, since I have to keep the structures of two folders in sync that way, which is just inefficient, especially when I refactor so much, which I think is simply necessary and the right thing to do.
Continue reading →
I don't get mocha to build with browserify, I always get
Continue reading →