mirror of
https://github.com/filamentphp/filament.git
synced 2026-09-01 15:09:33 +08:00
Update TextColumnTest.php
This commit is contained in:
@@ -177,29 +177,6 @@ describe('rendering', function (): void {
|
||||
});
|
||||
});
|
||||
|
||||
it('has no accessibility issues in light mode', function (): void {
|
||||
retry(10, function (): void {
|
||||
Post::factory()->count(3)->create();
|
||||
|
||||
$this->actingAs(User::factory()->create());
|
||||
|
||||
visit('/columns-browser-test')
|
||||
->assertNoAccessibilityIssues();
|
||||
});
|
||||
});
|
||||
|
||||
it('has no accessibility issues in dark mode', function (): void {
|
||||
retry(10, function (): void {
|
||||
Post::factory()->count(3)->create();
|
||||
|
||||
$this->actingAs(User::factory()->create());
|
||||
|
||||
visit('/columns-browser-test')
|
||||
->inDarkMode()
|
||||
->assertNoAccessibilityIssues();
|
||||
});
|
||||
});
|
||||
|
||||
class RenderTextColumn extends Component implements HasActions, HasSchemas, Tables\Contracts\HasTable
|
||||
{
|
||||
use InteractsWithActions;
|
||||
|
||||
Reference in New Issue
Block a user