diff --git a/tests/TrackPageviewTest.php b/tests/TrackPageviewTest.php index caa8c57..317ba74 100644 --- a/tests/TrackPageviewTest.php +++ b/tests/TrackPageviewTest.php @@ -12,8 +12,6 @@ ->get('/', fn () => 'Hello World'); $this->get('/'); - - expect(true)->toBeTrue(); }); it('skips redirects', function () { @@ -25,7 +23,6 @@ $this->get('/'); Pirsch::shouldNotHaveBeenCalled(); - expect(true)->toBeTrue(); }); it('skips Livewire', function () { @@ -37,7 +34,6 @@ $this->get('/', ['X-Livewire' => 'true']); Pirsch::shouldNotHaveBeenCalled(); - expect(true)->toBeTrue(); }); it('skips Telescope', function () { @@ -49,5 +45,4 @@ $this->get('/telescope/test'); Pirsch::shouldNotHaveBeenCalled(); - expect(true)->toBeTrue(); });