You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was having problems with Laravel using fallback DB credentials randomly instead of my .env. This results in 500 Errors when trying to get the csrf token, for example. Once I changed these lines from
cy.artisan('config:clear', {}, { log: false });
to
cy.artisan('config:cache', {}, { log: false });
everything seemed to be working. Is there anything I'm missing?
The text was updated successfully, but these errors were encountered:
cypress/src/stubs/support/index.js
Line 24 in 3356dc9
I was having problems with Laravel using fallback DB credentials randomly instead of my
.env
. This results in 500 Errors when trying to get the csrf token, for example. Once I changed these lines fromcy.artisan('config:clear', {}, { log: false });
to
cy.artisan('config:cache', {}, { log: false });
everything seemed to be working. Is there anything I'm missing?
The text was updated successfully, but these errors were encountered: