mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Change default value to allow code coverage on non-app files.
Don't default to app, as it prevents generating code coverage for core and plugin files. Fixes #6533
This commit is contained in:
parent
f82280f654
commit
6cb21e6dc8
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ class CakeTestSuiteDispatcher {
|
|||
'codeCoverage' => false,
|
||||
'case' => null,
|
||||
'core' => false,
|
||||
'app' => true,
|
||||
'app' => false,
|
||||
'plugin' => null,
|
||||
'output' => 'html',
|
||||
'show' => 'groups',
|
||||
|
|
Loading…
Reference in a new issue