From 1f06b1161e31d2614751b255d24267d826b2e879 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Fri, 17 Feb 2023 14:33:54 +0100 Subject: [PATCH] Set base app URL in config --- tests/BootstrapperTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/BootstrapperTest.php b/tests/BootstrapperTest.php index 00bbe026..fbc4f0b3 100644 --- a/tests/BootstrapperTest.php +++ b/tests/BootstrapperTest.php @@ -396,6 +396,7 @@ test('url bootstrapper overrides the root url when tenancy gets initialized and }); $baseUrl = url(route('home')); + config(['app.url' => $baseUrl]); $rootUrlOverride = function (Tenant $tenant) use ($baseUrl) { $scheme = str($baseUrl)->before('://');