If we run test in browser and throw exception: ``` javascript var test = require('prova'); test('smth', function(t) { throw new Error(); t.end(); }); ``` Test case does not end and error appears only in browser console, but not in command line.