Add missing service provider for plugin tests

This commit is contained in:
Frederic Guillot 2016-12-03 17:44:59 -05:00
parent b8f7532e5c
commit e0aeb4ca1b
No known key found for this signature in database
GPG Key ID: 92D77191BA7FBC99
2 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@ Version 1.0.35
New features:
* Add external tasks plugin interfaces
* Add personal API access token for users
* Rewrite of Markdown editor (remove CodeMirror)
* Suggest menu for task ID and user mentions in Markdown editor

View File

@ -49,6 +49,7 @@ abstract class Base extends PHPUnit_Framework_TestCase
$this->container->register(new Kanboard\ServiceProvider\FilterProvider());
$this->container->register(new Kanboard\ServiceProvider\JobProvider());
$this->container->register(new Kanboard\ServiceProvider\QueueProvider());
$this->container->register(new Kanboard\ServiceProvider\ExternalTaskProvider());
$this->container['dispatcher'] = new TraceableEventDispatcher(
new EventDispatcher,