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
It's the same issue as #3339, but for the mode "run-multiple" only.
The bug causes that if you run codeceptjs run-multiple dev (without the option --profile), then process.env.profile is "undefined" instead of undefined
It may cause issues during further parsing of the variable. We hit the issue when trying to do something like env = process.env.profile; env = env || "dev"; which relies on undefined type value.
Details
CodeceptJS version: 3.5.8
The text was updated successfully, but these errors were encountered:
It's the same issue as #3339, but for the mode "run-multiple" only.
The bug causes that if you run
codeceptjs run-multiple dev
(without the option--profile
), thenprocess.env.profile
is "undefined" instead ofundefined
It may cause issues during further parsing of the variable. We hit the issue when trying to do something like
env = process.env.profile; env = env || "dev";
which relies onundefined
type value.Details
The text was updated successfully, but these errors were encountered: