Wesley Cho

Results 80 comments of Wesley Cho

I would like to assist as well - in particular, I would like to assist with the core, and maybe other plugins. In particular, I (selfishly) would like to work...

I have seen this as well, but when using the watcher and Chrome. It was not consistently reproducible for me though (Node 6.9.4). Could this be related to karma-webpack? My...

Can you slim this down into a minimal reproduction in a repository? If it helps, I have seen this error happen when there is a syntax error in one of...

I've seen this issue in my app as well, it turns out that it doesn't matter what reporters you are using with remap-istanbul - I was able to isolate it...

After doing some chasing around, I am mostly convinced this is because karma-remap-istanbul is using `baseReporterDecorator`, so when writes are triggered in the base reporter, it propagates to the karma-mocha-reporter...

Just so a solution is out in the open, we could either move to create another reporter type that can be decorated around, or we can try making a mixin...

Alternatively, we could add a new hook inside karma for running actions after reporters, since some of the things being done by reporters like the karma-junit-reporter and karma-remap-istanbul are actually...

This is a problem in karma itself IMO - karma is coupling the defining of default reporters with logging wired in, so reporters that are using the base reporter decorator...

The explanation given is incorrect - the click event does fire on the modal window, as demonstrated [here](http://plnkr.co/edit/2u0VTLGRvobu10qxYeqE?p=preview). Notice that the raw DOM `addEventListener` method triggers the click event, so...

The code change from #5911 will be the one added, just need tweaks in the tests - one absolutely must have this behavior asap for a strange reason, one can...