mirror of
https://github.com/filamentphp/filament.git
synced 2026-08-29 03:09:12 +08:00
e5c1be713d
* chore: Introduce Pest browser testing for the framework * cs * fix tests * fix * Update tags-input.blade.php
12 lines
204 B
PHP
12 lines
204 B
PHP
<?php
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
expect()->extend('toBeSameModel', function (Model $model) {
|
|
return $this
|
|
->is($model)->toBeTrue();
|
|
});
|
|
|
|
pest()->browser()
|
|
->timeout(10000);
|