This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# CHOOSE PRODUCTION or DEMO | |
ENVIRONMENT=DEMO | |
# DEMO | |
DEMO_API_KEY=THE_CONTENT_OF_YOUR_DEMO_API_KEY_HERE | |
DEMO_API_SECRET=THE_CONTENT_OF_YOUR_DEMO_API_SECRET_HERE | |
DEMO_API_PASSPHRASE=THE_CONTENT_OF_YOUR_DEMO_API_PASSPHRASE_HERE | |
# PRODUCTION | |
API_KEY=THE_CONTENT_OF_YOUR_API_KEY_HERE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import("./iOSCiLanesFastfile") | |
import("./AndroidCiLanesFastfile") | |
####################################################### | |
# PUT IN THIS FILE THE LANES TO RUN LOCALLY # | |
####################################################### | |
default_platform(:ios) | |
platform :ios do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import("./iOSCiLanesFastfile") | |
import("./AndroidCiLanesFastfile") | |
####################################################### | |
# PUT IN THIS FILE THE LANES TO RUN LOCALLY # | |
####################################################### | |
default_platform(:ios) | |
platform :ios do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
// Solution based on https://stackoverflow.com/a/24933287/659272 | |
@Test | |
fun someTest() { | |
val textView = onView( | |
withId(R.id.editTextToVerifyPosition) | |
) |