From cb0db05957e54ee5fb83d5ebe121d4882c90f097 Mon Sep 17 00:00:00 2001 From: nathan Date: Thu, 31 Oct 2024 21:00:36 +0000 Subject: [PATCH 1/3] Fixes#986 use lower BCRYPT_ROUNDS in testing to speed up tests --- phpunit.xml | 3 ++- tests/Feature/ConfigTest.php | 9 +++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 tests/Feature/ConfigTest.php diff --git a/phpunit.xml b/phpunit.xml index 8502c633e..c4f0bc8c9 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -23,7 +23,7 @@ - + @@ -32,5 +32,6 @@ + diff --git a/tests/Feature/ConfigTest.php b/tests/Feature/ConfigTest.php new file mode 100644 index 000000000..f071fe0ed --- /dev/null +++ b/tests/Feature/ConfigTest.php @@ -0,0 +1,9 @@ +assertEquals(4, config('hashing.bcrypt.rounds')); +}); From 156261141e648fb9efdc8702927faaf2bf489766 Mon Sep 17 00:00:00 2001 From: nathan Date: Thu, 31 Oct 2024 21:06:04 +0000 Subject: [PATCH 2/3] database name to testing --- phpunit.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit.xml b/phpunit.xml index c4f0bc8c9..decef64a6 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -23,7 +23,7 @@ - + From 994ac12e2ca61cc56a8e96042d62e10f0ace05c3 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Fri, 1 Nov 2024 11:00:26 +0100 Subject: [PATCH 3/3] wip --- tests/Feature/ConfigTest.php | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 tests/Feature/ConfigTest.php diff --git a/tests/Feature/ConfigTest.php b/tests/Feature/ConfigTest.php deleted file mode 100644 index f071fe0ed..000000000 --- a/tests/Feature/ConfigTest.php +++ /dev/null @@ -1,9 +0,0 @@ -assertEquals(4, config('hashing.bcrypt.rounds')); -});