From 6aa5114bcf3d7c276cbe42ba85273f5349e549c9 Mon Sep 17 00:00:00 2001 From: Pascal Baljet Date: Tue, 12 Nov 2024 17:23:41 +0100 Subject: [PATCH] Update DuskTestCase.php --- app/tests/DuskTestCase.php | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/app/tests/DuskTestCase.php b/app/tests/DuskTestCase.php index a3f0e2e0..fd4a7332 100644 --- a/app/tests/DuskTestCase.php +++ b/app/tests/DuskTestCase.php @@ -111,24 +111,4 @@ protected function driver() ) ); } - - /** - * Determine whether the Dusk command has disabled headless mode. - * - * @return bool - */ - protected function hasHeadlessDisabled() - { - return isset($_SERVER['DUSK_HEADLESS_DISABLED']) || isset($_ENV['DUSK_HEADLESS_DISABLED']); - } - - /** - * Determine if the browser window should start maximized. - * - * @return bool - */ - protected function shouldStartMaximized() - { - return isset($_SERVER['DUSK_START_MAXIMIZED']) || isset($_ENV['DUSK_START_MAXIMIZED']); - } }