Hi guys,
is anyone of you testing his app with codeception and uses Phalcons assets filters ?
$this->assets
->collection('css')
->addCss('css/bootstrap.min.css', false, false)
->addCss('css/font-awesome.min.css', false, false)
->addCss('css/style.css', true)
->setTargetPath('css/production.css')
->setTargetUri('css/production.css')
->join(true)
->addFilter(new \Phalcon\Assets\Filters\Cssmin());
Im trying to do functional tests but always get this error:
ErrorException: Phalcon\Assets\Resource::getContent(css/bootstrap.min.css): failed to open stream: No such file or directory
I tried to change cwd with chdir(); but no effetcs! Any experiences ? Thanks