MatchesReportSnapshots.php 350 B

12345678910111213141516
  1. <?php
  2. namespace Facade\FlareClient\Tests\Concerns;
  3. use Facade\FlareClient\Tests\TestClasses\ReportDriver;
  4. use Spatie\Snapshots\MatchesSnapshots;
  5. trait MatchesReportSnapshots
  6. {
  7. use MatchesSnapshots;
  8. public function assertMatchesReportSnapshot(array $report)
  9. {
  10. $this->assertMatchesSnapshot($report, new ReportDriver());
  11. }
  12. }