MatchesDumpSnapshots.php 352 B

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