lib/snapshot/setup.rb in snapshot-1.12.3 vs lib/snapshot/setup.rb in snapshot-1.13.0
- old
+ new
@@ -15,18 +15,19 @@
puts "Successfully created SnapshotHelper.swift '#{File.join(path, 'SnapshotHelper.swift')}'".green
puts "Successfully created new Snapfile at '#{snapfile_path}'".green
puts "-------------------------------------------------------".yellow
puts "Open your Xcode project and make sure to do the following:".yellow
- puts "1) Add the ./fastlane/SnapshotHelper.swift to your UI Test target".yellow
+ puts "1) Add a new UI Test target to your project".yellow
+ puts "2) Add the ./fastlane/SnapshotHelper.swift to your UI Test target".yellow
puts " You can move the file anywhere you want".yellow
- puts "2) Call `setupSnapshot(app)` when launching your app".yellow
+ puts "3) Call `setupSnapshot(app)` when launching your app".yellow
puts ""
puts " let app = XCUIApplication()"
puts " setupSnapshot(app)"
puts " app.launch()"
puts ""
- puts "3) Add `snapshot(\"0Launch\")` to wherever you want to create the screenshots".yellow
+ puts "4) Add `snapshot(\"0Launch\")` to wherever you want to create the screenshots".yellow
puts ""
puts "More information on GitHub: https://github.com/fastlane/fastlane/tree/master/snapshot".green
end
end
end