| 12345678910111213141516 |
- <?php
- namespace Facade\FlareClient\Tests\Concerns;
- use Facade\FlareClient\Tests\TestClasses\ReportDriver;
- use Spatie\Snapshots\MatchesSnapshots;
- trait MatchesReportSnapshots
- {
- use MatchesSnapshots;
- public function assertMatchesReportSnapshot(array $report)
- {
- $this->assertMatchesSnapshot($report, new ReportDriver());
- }
- }
|