Wes Todd

Results 397 comments of Wes Todd

I believe we had something setup internally for this, probably with Sauce Labs, I will ask our QA lead if he has any suggestions and post back. Really I am...

@rlidwka Yeah, we are doing an isomorphic app. Basically I am making a `routes.js` file that looks like this: ``` javascript var index = require('./handlers/index'), foo = require('./handlers/foo'); module.exports =...

For backstory: Our last application was an Angular app with a Go backend. One of the most common bugs we had was weird behavior because we forgot to define all...

Ok, so going more deeply into the browser testing I found that `__proto__` is not supported before IE11. This small change fixes it: ``` javascript // Was: router.__proto__ = this...

Yeah, great point. I was unsure of that because of the exact thing you pointed out. I will look at doing that first thing tomorrow morning. Also, if you are...

Does anyone happen to know of a good polyfill for `Object.setPrototypeOf`? I have looked for a stand alone version that would support back to IE8 and could not find one....

MDN certainly has some conflicting information on this subject. Last thing to consider here is avoiding the pollution of the global namespace. I threw together a little npm module to...

HAHA, yeah that would help! https://github.com/wesleytodd/setprototypeof

Whatever the solutions we end on are, the real problem is that it is not supported, **officially supported**, until we have automated tests. Do you have a good setup in...

I would personally wait until automated test are in place to claim support. An important project like this one cannot just rely on manual testing, it is just not a...