Merge pull request #1351 from cndrsdrmn/patch-1

fix: add ignoring clause for `App\Features\Concerns` on Laravel Preset
This commit is contained in:
nuno maduro
2025-07-26 04:17:21 +01:00
committed by GitHub

View File

@ -35,7 +35,8 @@ final class Laravel extends AbstractPreset
->ignoring('App\Features\Concerns'); ->ignoring('App\Features\Concerns');
$this->expectations[] = expect('App\Features') $this->expectations[] = expect('App\Features')
->toHaveMethod('resolve'); ->toHaveMethod('resolve')
->ignoring('App\Features\Concerns');
$this->expectations[] = expect('App\Exceptions') $this->expectations[] = expect('App\Exceptions')
->classes() ->classes()