beyondcode / dusk-dashboard

A beautiful dashboard for your Laravel Dusk tests
https://pociot.dev/8-introducing-laravel-dusk-dashboard
MIT License
558 stars 62 forks source link

Replace with jQuery() to be less intrusive #33

Closed michielgerritsen closed 5 years ago

michielgerritsen commented 5 years ago

Hi,

This library uses the shorthand jQuery selector $('...'), while Dusk uses the regular selector jQuery('...'). When i tried this package on a working test it didn't gave me any output. After quite some debugging (as xdebug refused to work) it turned out that my application doesn't like the shorthand, while the normal works perfectly. I think this is because there is a jQuery.noConflict() somewhere, which removes the $ alias.