Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenjude authored and github-actions[bot] committed Sep 22, 2024
1 parent 15e25fb commit 89e8d2f
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions tests/DebuggerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,18 @@
->toThrow(Exception::class);
});

it('groups plugin navigation items', function () {

});
it('groups plugin navigation items', function () {});

it('customizes telescope navigation', function () {
$plugin = DebuggerPlugin::make()
->horizonNavigation(false)
->pulseNavigation(false)
->telescopeNavigation(
condition: fn() => true,
condition: fn () => true,
label: 'Laravel Telescope',
icon: 'heroicon-o-users',
url: 'telescope/requests',
openInNewTab: fn() => false
openInNewTab: fn () => false
);

expect($plugin->hasHorizon())->toBeFalse();
Expand All @@ -50,11 +48,11 @@
->telescopeNavigation(false)
->pulseNavigation(false)
->horizonNavigation(
condition: fn() => true,
condition: fn () => true,
label: 'Laravel Horizon',
icon: 'heroicon-o-users',
url: url('horizon/requests'),
openInNewTab: fn() => false
openInNewTab: fn () => false
);

expect($plugin->hasPulse())->toBeFalse();
Expand All @@ -77,11 +75,11 @@
->horizonNavigation(false)
->telescopeNavigation(false)
->pulseNavigation(
condition: fn() => true,
condition: fn () => true,
label: 'Laravel Pulse',
icon: 'heroicon-o-users',
url: 'pulse/requests',
openInNewTab: fn() => false
openInNewTab: fn () => false
);

expect($plugin->hasHorizon())->toBeFalse();
Expand Down

0 comments on commit 89e8d2f

Please sign in to comment.