Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeWithDennis authored Apr 24, 2024
1 parent f479118 commit 63ddc0c
Showing 1 changed file with 0 additions and 157 deletions.
157 changes: 0 additions & 157 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,163 +99,6 @@ You can customize the stubs by publishing them to your project:
```bash
php artisan vendor:publish --tag="filament-tests-stubs"
```
### Available Tests
- Page
- Auth
- Registration
- [x] it can render the registration page
- [ ] it can register
- PasswordReset
- [x] it can render the password reset page
- [ ] it can reset the password
- Login
- [x] it can render the login page
- [ ] it can log in
- Logout
- [ ] it can log out
- Resource
- Page
- Create
- Form
- Field
- [X] [has a disabled field on create form](https://filamentphp.com/docs/3.x/forms/testing#disabled-fields)
- [x] [it has a field on create form](https://filamentphp.com/docs/3.x/forms/testing#fields)
- [x] [it has a hidden field on create form](https://filamentphp.com/docs/3.x/forms/testing#hidden-fields)
- [ ] [it can validate input on create form](https://filamentphp.com/docs/3.x/forms/testing#validation)
- [x] [it has create form](https://filamentphp.com/docs/3.x/forms/testing#form-existence)
- [ ] it can validate create form input
- [x] [it can render the create page](https://filamentphp.com/docs/3.x/panels/testing#routing--render)
- Custom
- [ ] it can render the custom page
- Action
- [ ] it can render actions on the custom page
- Form
- [ ] it can render the form on the custom page
- Infolist
- [ ] it can render the infolist on the custom page
- RelationManager
- [ ] it can render the relation manager on the custom page
- Table
- [ ] it can render the table on the custom page
- Widget
- [ ] it can render the widget on the custom page
- Edit
- Form
- Field
- [X] [has a disabled field on edit form](https://filamentphp.com/docs/3.x/forms/testing#disabled-fields)
- [x] [it has a field on edit form](https://filamentphp.com/docs/3.x/forms/testing#fields)
- [x] [it has a hidden field on edit form](https://filamentphp.com/docs/3.x/forms/testing#hidden-fields)
- [ ] [it can validate input on edit form](https://filamentphp.com/docs/3.x/forms/testing#validation)
- [x] [it has edit form](https://filamentphp.com/docs/3.x/forms/testing#form-existence)
- [ ] [it can fill the form on the edit page](https://filamentphp.com/docs/3.x/forms/testing#filling-a-form)
- [ ] it can validate edit form input
- [x] [it can render the edit page](https://filamentphp.com/docs/3.x/panels/testing#routing--render)
- Index
- Action
- [x] it has header actions on the index page
- [x] it cannot render header actions on the index page
- [x] it can render header actions on the index page
- Table
- Action
- [x] [it can delete records](https://filamentphp.com/docs/3.x/tables/testing#calling-actions)
- [x] [it can force delete records](https://filamentphp.com/docs/3.x/tables/testing#calling-actions)
- [x] [it can soft delete records](https://filamentphp.com/docs/3.x/tables/testing#calling-actions)
- [x] [it has table action](https://filamentphp.com/docs/3.x/tables/testing#calling-actions)
- [x] [it can replicate records](https://filamentphp.com/docs/3.x/tables/testing#calling-actions)
- [x] [it can restore records](https://filamentphp.com/docs/3.x/tables/testing#calling-actions)
- [x] [it has the correct URL for table action](https://filamentphp.com/docs/3.x/infolists/testing#url)
- [x] [it has the correct URL and opens in a new tab for table action](https://filamentphp.com/docs/3.x/infolists/testing#url)
- BulkAction
- [x] it can bulk delete records
- [x] it can bulk force delete records
- [x] it can bulk delete records
- [x] it has table bulk action
- [x] it can bulk restore records
- [x] it can bulk soft delete records
- Column
- [x] [it cannot render column](https://filamentphp.com/docs/3.x/tables/testing#columns)
- [x] [it has the correct descriptions above](https://filamentphp.com/docs/3.x/tables/testing#descriptions)
- [x] [it has the correct descriptions below](https://filamentphp.com/docs/3.x/tables/testing#descriptions)
- [x] [it has column](https://filamentphp.com/docs/3.x/tables/testing#existence)
- [x] [it has extra attributes](https://filamentphp.com/docs/3.x/tables/testing#extra-attributes)
- [x] [it can render column](https://filamentphp.com/docs/3.x/tables/testing#columns)
- [x] [it can search column](https://filamentphp.com/docs/3.x/tables/testing#searching)
- [x] [it can individually search by column](https://filamentphp.com/docs/3.x/tables/testing#searching)
- [x] [it has the correct options](https://filamentphp.com/docs/3.x/tables/testing#select-columns)
- [x] [it can sort column](https://filamentphp.com/docs/3.x/tables/testing#sorting)
- Filter
- [ ] [it can add a table filter](https://filamentphp.com/docs/3.x/tables/testing#removing-filters)
- [ ] [it can remove a table filter](https://filamentphp.com/docs/3.x/tables/testing#removing-filters)
- [x] [it can reset table filters](https://filamentphp.com/docs/3.x/tables/testing#resetting-filters)
- Summary
- [ ] [it can average values in a column](https://filamentphp.com/docs/3.x/tables/testing#summaries)
- [ ] [it can count values in a column](https://filamentphp.com/docs/3.x/tables/testing#summaries)
- [ ] [it can count the occurrence of icons in a column](https://filamentphp.com/docs/3.x/tables/testing#summaries)
- [ ] [it can range date values in a column](https://filamentphp.com/docs/3.x/tables/testing#summaries)
- [ ] [it can range values in a column](https://filamentphp.com/docs/3.x/tables/testing#summaries)
- [ ] [it can sum values in a column](https://filamentphp.com/docs/3.x/tables/testing#summaries)
- [x] it has the correct table description
- [x] it has the correct table heading
- [x] [it can list records on the index page](https://filamentphp.com/docs/3.x/tables/testing#render)
- [x] [it can list records on the index page with pagination](https://filamentphp.com/docs/3.x/tables/testing#render)
- [x] [it can render the index page](https://filamentphp.com/docs/3.x/tables/testing#render)
- [x] [it cannot display trashed records by default](https://filamentphp.com/docs/3.x/tables/testing#render)
- View
- [x] [it can render the view page](https://filamentphp.com/docs/3.x/tables/testing#render)
- RelationManager
- Action
- [ ] it has header actions on the index page
- [ ] it cannot render header actions on the index page
- [ ] it can render header actions on the index page
- Table
- Action
- [ ] [it can delete records](https://filamentphp.com/docs/3.x/tables/testing#calling-actions)
- [ ] [it can force delete records](https://filamentphp.com/docs/3.x/tables/testing#calling-actions)
- [ ] [it can soft delete records](https://filamentphp.com/docs/3.x/tables/testing#calling-actions)
- [ ] [it has table action](https://filamentphp.com/docs/3.x/tables/testing#calling-actions)
- [ ] [it can replicate records](https://filamentphp.com/docs/3.x/tables/testing#calling-actions)
- [ ] [it can restore records](https://filamentphp.com/docs/3.x/tables/testing#calling-actions)
- [ ] [it has the correct URL for table action](https://filamentphp.com/docs/3.x/infolists/testing#url)
- [ ] [it has the correct URL and opens in a new tab for table action](https://filamentphp.com/docs/3.x/infolists/testing#url)
- BulkAction
- [ ] it can bulk delete records
- [ ] it can bulk force delete records
- [ ] it can bulk delete records
- [ ] it has table bulk action
- [ ] it can bulk restore records
- [ ] it can bulk soft delete records
- Column
- [ ] [it cannot render column](https://filamentphp.com/docs/3.x/tables/testing#columns)
- [ ] [it has state](https://filamentphp.com/docs/3.x/tables/testing#state)
- [ ] [it has the correct descriptions above](https://filamentphp.com/docs/3.x/tables/testing#descriptions)
- [ ] [it has the correct descriptions below](https://filamentphp.com/docs/3.x/tables/testing#descriptions)
- [ ] [it has column](https://filamentphp.com/docs/3.x/tables/testing#existence)
- [ ] [it has extra attributes](https://filamentphp.com/docs/3.x/tables/testing#extra-attributes)
- [ ] [it can render column](https://filamentphp.com/docs/3.x/tables/testing#columns)
- [ ] [it can search column](https://filamentphp.com/docs/3.x/tables/testing#searching)
- [ ] [it can individually search by column](https://filamentphp.com/docs/3.x/tables/testing#searching)
- [ ] [it has the correct options](https://filamentphp.com/docs/3.x/tables/testing#select-columns)
- [ ] [it can sort column](https://filamentphp.com/docs/3.x/tables/testing#sorting)
- Filter
- [ ] [it can add a table filter](https://filamentphp.com/docs/3.x/tables/testing#removing-filters)
- [ ] [it can remove a table filter](https://filamentphp.com/docs/3.x/tables/testing#removing-filters)
- [ ] [it can reset table filters](https://filamentphp.com/docs/3.x/tables/testing#resetting-filters)
- Summary
- [ ] [it can average values in a column](https://filamentphp.com/docs/3.x/tables/testing#summaries)
- [ ] [it can count values in a column](https://filamentphp.com/docs/3.x/tables/testing#summaries)
- [ ] [it can count the occurrence of icons in a column](https://filamentphp.com/docs/3.x/tables/testing#summaries)
- [ ] [it can range date values in a column](https://filamentphp.com/docs/3.x/tables/testing#summaries)
- [ ] [it can range values in a column](https://filamentphp.com/docs/3.x/tables/testing#summaries)
- [ ] [it can sum values in a column](https://filamentphp.com/docs/3.x/tables/testing#summaries)
- [ ] it has the correct table description
- [ ] it has the correct table heading
- [ ] [it can list records on the index page](https://filamentphp.com/docs/3.x/tables/testing#render)
- [ ] [it can list records on the index page with pagination](https://filamentphp.com/docs/3.x/tables/testing#render)
- [ ] [it can render the index page](https://filamentphp.com/docs/3.x/tables/testing#render)
- [ ] [it cannot display trashed records by default](https://filamentphp.com/docs/3.x/tables/testing#render)
## Running the package tests
You can run your tests normally by running the following command:
Expand Down

0 comments on commit 63ddc0c

Please sign in to comment.