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
The integration tests are unable to run due to a failure in our rfdk-integ-e2e.sh script.
Reproduction Steps
Fill in integ/test-config.sh without using any pre-component hooks and then run yarn run e2e from the integ directory.
Error Log
./scripts/bash/rfdk-integ-e2e.sh: line 77: PRE_COMPONENT_HOOK: unbound variable
Environment
This failure is happening in a bash script in our integration test directory. This is happening trying to run the integration tests on Linux using our current mainline branch.
Solution
if [ -n "PRE_COMPONENT_HOOK" ]
Should be written as:
if [ ! -z "${PRE_COMPONENT_HOOK+x}" ]
This is 🐛 Bug Report
The text was updated successfully, but these errors were encountered:
The integration tests are unable to run due to a failure in our
rfdk-integ-e2e.sh
script.Reproduction Steps
Fill in
integ/test-config.sh
without using any pre-component hooks and then runyarn run e2e
from theinteg
directory.Error Log
Environment
This failure is happening in a bash script in our integration test directory. This is happening trying to run the integration tests on Linux using our current
mainline
branch.Solution
Should be written as:
This is 🐛 Bug Report
The text was updated successfully, but these errors were encountered: