silverstripe / silverstripe-widgets

Widgets subsystem for Silverstripe CMS
http://silverstripe.org
BSD 3-Clause "New" or "Revised" License
38 stars 55 forks source link

FIX convert CI bootstrap references to new their new locations in vendor #155

Closed NightJar closed 6 years ago

NightJar commented 6 years ago

Following on from the move yesterday to host SilverStripe core (4.0+) from vendor and in the future from outside the webroot, the according adjustments are being made to all the CI and unit testing bootstrapping files in SilverStripe's supported & most commonly used modules to allow automated tests to continue passing.

tractorcow commented 6 years ago

SViewer::add_themes(['tests/WidgetControllerTest']);

You need to specify a dir in addition to this module.

SViewer::add_themes([
    'silverstripe/widgets:/tests/WidgetControllerTest'
]);
NightJar commented 6 years ago

Neat, thanks for your help @tractorcow - I've updated :)