You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Html reporter re-emits 'test-end' for some reason on failure, so the event gets reported once by the runner, and once by the reporter, duplicating the results.
inside html reporter:
runner.on('fail',function(test){// For type = 'test' its possible that the test failed due to multiple// done() calls. So report the issue here.if(test.type==='hook'||test.type==='test'){runner.emit('test end',test);}});
The text was updated successfully, but these errors were encountered:
Html reporter re-emits 'test-end' for some reason on failure, so the event gets reported once by the runner, and once by the reporter, duplicating the results.
inside html reporter:
The text was updated successfully, but these errors were encountered: