Skip to content

Commit

Permalink
use relative path for app paths
Browse files Browse the repository at this point in the history
  • Loading branch information
JavonDavis committed Feb 27, 2019
1 parent 06535c2 commit f4f7e22
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7,771 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,6 @@ buck-out/
!.vscode/extensions.json

*.pot

# e2e output log
appium-out.log
4 changes: 2 additions & 2 deletions __device-tests__/gutenberg-editor.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ if(rnPlatform === 'android' ) {
appActivity: 'com.gutenberg.MainActivity',
noReset: false,
fullReset: true,
app: '/Users/javon/Projects/gutenberg-mobile/android/app/build/outputs/apk/debug/app-debug.apk',
app: './android/app/build/outputs/apk/debug/app-debug.apk', // relative to root of project
};
} else {
config = {
platformName: 'iOS',
platformVersion: 12.1,
deviceName: 'iPhone XR',
automationName: 'XCUITest',
app: '/Users/javon/Projects/gutenberg-mobile/ios/build/Build/Products/Debug-iphonesimulator/gutenberg.app', // relative to root of project
app: './ios/build/Build/Products/Debug-iphonesimulator/gutenberg.app', // relative to root of project
};
}

Expand Down
Loading

0 comments on commit f4f7e22

Please sign in to comment.