Andrew Bradley

Results 547 comments of Andrew Bradley
trafficstars

My Googling suggest that .DS_Store files are only created by the OSX Finder application when it accesses a directory. If a user is working exclusively with the command line, is...

Current behavior hides both ["a.b"] and ["a"]["b"]. However, I'm guessing most people think that correct behavior is to hide _only_ ["a"]["b"]. Thus hiding ["a.b"] is a bug which can be...

I'd be delighted (time permitting) I'll try to throw something together tonight. Agreed on not calling people crazy, especially since I submitted this bug report :D

Just a heads-up, I'm still keen on fixing this problem but first I have to get Knockout added to my employer's "we don't own your inventions on these projects" list....

Yeah, sorry for the extended radio silence. I talked to my boss and verified that this kind of contribution (bugfixing) is allowed. I'll try to carve out some time later...

I might be able to fix it this weekend while working on the other stuff. If not I'll let you know.

Apologies, life's been crazy lately. I'll try to carve out some time later this week to work on a fix.

My guess is that native modules can only be loaded once. When mockery clears the cache, node tries to load the native module a second time since it's not in...

I think requiring mockery from inside a test where the cache has been cleared will have other ill effects. For example, mockery also stores info about stubs and mocks, not...

It wouldn't be too hard for mockery to implement Node's `EventEmitter` and fire an event every time `_load` receives a request. ``` var requireSpy = sinon.spy(); mockery.on('require', requireSpy); /* do...