- Renamed Model to BaseModel (make it clear)
- Updated RoboFile to compile assets or else tests break
This commit is contained in:
@ -73,12 +73,14 @@ class RoboFile extends \Robo\Tasks {
|
||||
|
||||
function testUnit($singleUnit = null) {
|
||||
$this->loadEnv();
|
||||
$this->compileAll();
|
||||
$this->_exec('vendor/bin/codecept build');
|
||||
$this->_exec('vendor/bin/codecept run unit ' . (($singleUnit) ? $singleUnit : ''));
|
||||
}
|
||||
|
||||
function testAcceptance() {
|
||||
$this->loadEnv();
|
||||
$this->compileAll();
|
||||
$this->_exec('vendor/bin/codecept build');
|
||||
$this
|
||||
->taskExec('phantomjs --webdriver=4444')
|
||||
@ -99,7 +101,7 @@ class RoboFile extends \Robo\Tasks {
|
||||
}
|
||||
|
||||
function testAll() {
|
||||
$this->loadEnv();
|
||||
$this->loadEnv();
|
||||
$this->_exec('vendor/bin/codecept build');
|
||||
$this
|
||||
->taskexec('phantomjs --webdriver=4444')
|
||||
|
Reference in New Issue
Block a user