This commit is contained in:
Marcel Pociot
2021-06-21 22:35:21 +02:00
parent 136e435403
commit 77e0b17151

View File

@@ -18,6 +18,8 @@ class AdminTest extends TestCase
/** @var Factory */ /** @var Factory */
protected $serverFactory; protected $serverFactory;
protected $port = 8090;
public function setUp(): void public function setUp(): void
{ {
parent::setUp(); parent::setUp();
@@ -142,7 +144,7 @@ class AdminTest extends TestCase
protected function startServer() protected function startServer()
{ {
$this->port = rand(8080, 9000); $this->port++;
$this->app['config']['expose.admin.subdomain'] = 'expose'; $this->app['config']['expose.admin.subdomain'] = 'expose';
$this->app['config']['expose.admin.database'] = ':memory:'; $this->app['config']['expose.admin.database'] = ':memory:';