From 0a17e78f33b93593bf5562cbc1d2ea5c1f62e35a Mon Sep 17 00:00:00 2001 From: MartinOscar <40749467+rmartinoscar@users.noreply.github.com> Date: Fri, 7 Mar 2025 02:53:29 +0100 Subject: [PATCH] Force `2fa_required` to no one by default (#1058) --- tests/TestCase.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/TestCase.php b/tests/TestCase.php index 67d037576..d789400e3 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -30,6 +30,7 @@ abstract class TestCase extends BaseTestCase // "an error occurred" message), we can probably assume that the exception isn't one that // is recognized as being user viewable. config()->set('app.debug', false); + config()->set('panel.auth.2fa_required', 0); $this->setKnownUuidFactory();