describe('Just a little test', () => { it('1 should be 1', (done) => { if(1 == 1){ done() }else{ throw Error("something went terribly wrong") } }); });