I am trying to integrate for my sample project UberClone with Fastlane. I have 3 Targets
UberClone
UberCloneTest
UberCloneUITest
I created fastfile as below and downloaded fastlane but I need your help for integrate fastlane tests are okay or not. How can I build this file ?
default_platform(:ios)
platform :ios do
# 1
desc "ui test and unit tests need to check"
# 2
lane :create_app do
# 3
produce
end
end