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 have a project with a .env file and other .env.behat The problem is when I run the tests the values for variables are .env values instead of .env.behat I have realized that if I have a variable in .env.behat and not in .env this value is as expected, but if I have the variable in both files, the value always is from .env file
Hello,
I have a project with a .env file and other .env.behat The problem is when I run the tests the values for variables are .env values instead of .env.behat I have realized that if I have a variable in .env.behat and not in .env this value is as expected, but if I have the variable in both files, the value always is from .env file
behat.yml:
default: extensions: Laracasts\Behat: env_path: .env.behat ...
.env:
VARIABLE_ONE=A
.env.behat:
VARIABLE_ONE=B VARIABLE_TWO=C
when I run the test VARIABLE_ONE worths A instead of B, and VARIABLE_TWO worths C
Someone has some idea??
Thanks!
The text was updated successfully, but these errors were encountered: