I’m trying to set up testing in a Radicle project that uses Eloquent models. I attempted to use the default Radicle testing setup, but it fails with the following error:
Call to a member function connection() on null
at vendor/illuminate/database/Eloquent/Model.php:1851
1847▕ * @return \Illuminate\Database\Connection
1848▕ */
1849▕ public static function resolveConnection($connection = null)
1850▕ {
➜1851▕ return static::$resolver->connection($connection);
1852▕ }
1853▕
Do you have any recommendations for resolving this?