A package that creates PEST tests specifically tailored for your Filament components.
Caution
This package is not ready yet, use it at your own risk.
composer require codewithdennis/filament-tests --dev
Run the command to generate tests for your Filament resources:
php artisan make:filament-test
The make:filament-test
command supports the following options:
--skip-pint
: Skip running Laravel Pint on generated test files--force
: Overwrite existing test files without confirmation
This package generates comprehensive PEST tests for your Filament resources. Here's a complete list of currently working tests:
- CanRenderCreatePageTest - Tests that the create page renders correctly
- CanRenderEditPageTest - Tests that the edit page renders correctly
- CanRenderIndexPageTest - Tests that the index page renders correctly
- CanRenderViewPageTest - Tests that the view page renders correctly
- HasHeaderActionTest - Tests that header actions exist
- ShowsHeaderActionTest - Tests that a header action is visible
- HidesHeaderActionTest - Tests that a header action is hidden
- HasColumnTest - Tests that the resource has table columns defined
- CanRenderColumnTest - Tests that default visible columns render correctly
- CanNotRenderColumnTest - Tests that default hidden columns don't render
- ShowsColumnTest - Tests that explicitly visible columns are shown
- HidesColumnTest - Tests that explicitly hidden columns are hidden
- CanNotDisplayTrashedRecordsByDefault - Tests that trashed records are not displayed by default if soft deletes are enabled
- ColumnHasDescriptionBelowTest - Tests that columns with descriptions display them below
- ColumnHasDescriptionAboveTest - Tests that columns with descriptions display them above
- SelectColumnHasOptionsTest - Tests that select columns have the correct options
- ColumnHasExtraAttributesTest - Tests that columns with extra attributes render them correctly
- CanSearchColumnTest - Tests that searchable columns work correctly
- CanSearchColumnIndividuallyTest - Tests that individual column search works correctly
- CanSortColumnTest - Tests that sortable columns work correctly
- CanPaginateRecordsTest - Tests that pagination works correctly
- HasFilterTest - Tests that a filter exists
- CanBulkDeleteRecordsTest - Tests that bulk delete action works correctly
- BeforeEach - Sets up common test configuration and data
All tests are automatically generated based on your Filament resource configuration and will only run when the relevant features are present in your resource (e.g., search tests only run if you have searchable columns).
The MIT License (MIT). Please see License File for more information.