Kevin Malakoff

Results 28 comments of Kevin Malakoff

Interesting and totally understand if this might be out scope for CRA. The main problem is that when I consult, I need to tell clients who deploy via docker and...

@paulmillr sorry, this might have been a little out of the blue...I've used tags / grep, skip, and filesystem glob patterns to filter tests, but not only. Only looks very...

I guess the question here is: now that you have are familiar with the various test cases and testing logic, how would you structure them for the long term? This...

Additional suggestions: 1. use npm script shortcuts to run each of the 'watching' methods independently, eg. all, fsevents, fs.watch (polling), fs.watch (non-polling) 2. create a perf folder and tests like...

@es128 understood. With my fresh eyes trying to understand and fix the tests, it is very clear in my mind that a simpler, more modular, and less coupled structure will...

``` Being able to set the mode from a CLI switch is something I've wanted for a while, but mocha's grep does not play nicely with .only - so I...

@es128 I'd expand it a little... 1. mode switching as that is what ultimately is getting in the way of effectively using all of mocha's tools 2. adding a perf...

Done: https://github.com/paulmillr/chokidar/issues/415

I've refactored [walk-filtered tests](https://github.com/kmalakoff/walk-filtered/tree/master/test) and implemented [fs-generate tests](https://github.com/kmalakoff/fs-generate/tree/master/test) follow best practices to promote open source contribution. Since they demonstrates what I believe is a self-documenting and pretty maintainable testing structure...

I use Backbone.RelationalModel with Backbone.ModelRef through composition rather than inheritance. in other words, model references can refer to models in a Collection that are derived from Backbone.RelationalModel. Also, the dependency...