diff --git a/CHANGELOG.md b/CHANGELOG.md index 49d1e08..dfd10ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to `filament-debugger` will be documented in this file. +## 3.1.1 - 2024-09-22 + +- Fixed issue #32 + ## 3.1.0 - 2024-09-13 - Added Laravel Pulse diff --git a/tests/DebuggerTest.php b/tests/DebuggerTest.php index 304042a..5db5aa3 100644 --- a/tests/DebuggerTest.php +++ b/tests/DebuggerTest.php @@ -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(); @@ -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(); @@ -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();