Laravel Dusk error: "Could not verify the hashed value's configuration." #48910
-
I have a Laravel app which has Pest PHP installed and running without issue. I decided to use Laravel Dusk and installed it as instructed in the Dusk documentation.
After the installation, when I try to run my tests, got this weird error in the console, and couldn't find anything about it on google:
How can I solve that problem? Helps appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
Ok, solved the issue... I have this config in my
and in
So, changed the |
Beta Was this translation helpful? Give feedback.
Ok, solved the issue...
I have this config in my
config/hashing.php
file:and in
phpunit.xml
file have:So, changed the
value="4"
tovalue="12"
as in the hashing config file and everything works like a charm again.