Skip to content

Commit

Permalink
use absolute path to entry file
Browse files Browse the repository at this point in the history
  • Loading branch information
hannojg committed Sep 21, 2023
1 parent ca47840 commit d646cdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ platform :android do
desc "Generate a new local APK for e2e testing"
lane :build_e2e do
ENV["ENVFILE"]="tests/e2e/.env.e2e"
ENV["ENTRY_FILE"]="src/libs/E2E/reactNativeLaunchingTest.js"
ENV["ENTRY_FILE"] = File.expand_path("../src/libs/E2E/reactNativeLaunchingTest.js", Dir.pwd)
ENV["E2E_TESTING"]="true"

gradle(
Expand Down

0 comments on commit d646cdf

Please sign in to comment.