Matt Motherway
Matt Motherway
@kangax I can make a PR (if that call was directed to the public ;). I was going to leave the old test in there since all the others have...
Thanks for that pointer. I like how @sleeper is doing the events. I'll see if I can incorporate this into the reload task.
You just need to plug `window` into jQuery: ```javascript let jQuery = require('jquery'); console.log('Setting up jsdom for node env'); let cleanDom = require('jsdom-global')();; let $ = jQuery(window); global.$ = $;...
@lionel-bijaoui The plugin just needs to be required after jQuery is added to the window global. ```javascript let jQuery = require('jquery'); console.log('Setting up jsdom for node env'); let cleanDom =...
There should at least be a warning that you're going to get a bunch of selenium stuff with web-component-tester. It's taking forever to install on my company's slow connection. 10:27...
I agree with @fumihwh. The unit test has access to the dependency's API directly, whereas any application built on top of this doesn't. Mode needs to be exposed in ReactART,...