Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin committed Mar 8, 2024
1 parent 221d918 commit 909a415
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions tests/TrackPageviewTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@
->get('/', fn () => 'Hello World');

$this->get('/');

expect(true)->toBeTrue();
});

it('skips redirects', function () {
Expand All @@ -25,7 +23,6 @@
$this->get('/');

Pirsch::shouldNotHaveBeenCalled();
expect(true)->toBeTrue();
});

it('skips Livewire', function () {
Expand All @@ -37,7 +34,6 @@
$this->get('/', ['X-Livewire' => 'true']);

Pirsch::shouldNotHaveBeenCalled();
expect(true)->toBeTrue();
});

it('skips Telescope', function () {
Expand All @@ -49,5 +45,4 @@
$this->get('/telescope/test');

Pirsch::shouldNotHaveBeenCalled();
expect(true)->toBeTrue();
});

0 comments on commit 909a415

Please sign in to comment.