From e1561d80e400057544c58195af8670849b49d5a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Thu, 23 Jun 2022 12:52:54 +0200 Subject: [PATCH] add sqlsrv vars to TestCase --- tests/TestCase.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/TestCase.php b/tests/TestCase.php index 1d4d770d..0fcc1a86 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -81,7 +81,10 @@ abstract class TestCase extends \Orchestra\Testbench\TestCase ], 'database.connections.sqlite.database' => ':memory:', 'database.connections.mysql.host' => env('TENANCY_TEST_MYSQL_HOST', '127.0.0.1'), + 'database.connections.sqlsrv.username' => env('TENANCY_TEST_MSSQL_USERNAME', 'sa'), + 'database.connections.sqlsrv.password' => env('TENANCY_TEST_MSSQL_PASSWORD', 'P@ssword'), 'database.connections.sqlsrv.host' => env('TENANCY_TEST_MSSQL_HOST', '127.0.0.1'), + 'database.connections.sqlsrv.database' => null, 'database.connections.pgsql.host' => env('TENANCY_TEST_PGSQL_HOST', '127.0.0.1'), 'tenancy.filesystem.disks' => [ 'local',