-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add UI test scheme #136
Add UI test scheme #136
Conversation
@@ -21,3 +21,167 @@ xcuserdata/ | |||
BeeSwift/Config.swift | |||
BeeSwift/GoogleService-Info.plist | |||
BeeSwift/Sentry.sh | |||
fastlane/test_output/* | |||
fastlane/report.xml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this appears on L48 as well
@@ -84,6 +84,8 @@ | |||
E5DF493724DC69A200260560 /* Config.swift.sample in Resources */ = {isa = PBXBuildFile; fileRef = E5DF493624DC69A200260560 /* Config.swift.sample */; }; | |||
E5DF493824DC69A200260560 /* Config.swift.sample in Resources */ = {isa = PBXBuildFile; fileRef = E5DF493624DC69A200260560 /* Config.swift.sample */; }; | |||
E5DF493924DC69A200260560 /* Config.swift.sample in Resources */ = {isa = PBXBuildFile; fileRef = E5DF493624DC69A200260560 /* Config.swift.sample */; }; | |||
E5FEFB3824E6FAC800A076BB /* BeeSwiftUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5FEFB3724E6FAC800A076BB /* BeeSwiftUITests.swift */; }; | |||
E5FEFB4124E6FAFC00A076BB /* LaunchScreenTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5FEFB4024E6FAFC00A076BB /* LaunchScreenTests.swift */; }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
with launch screen the static beeminder image came to mind but here we mean the "choose your path" screen, which is called SignInViewController
may the naming be consistent
@@ -471,14 +512,32 @@ | |||
productReference = A196CB2C1AE4142F00B90A3E /* BeeSwiftTests.xctest */; | |||
productType = "com.apple.product-type.bundle.unit-test"; | |||
}; | |||
E5FEFB3424E6FAC800A076BB /* BeeSwiftUITests */ = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
when I open this merged version in xcode I see two folders/groups named BeeSwiftUITests. One contains the file BeeSwiftUITests.swift and the other LaunchScreenTests.swift.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
and as for files in the working dir, I see
BeeSwift/BeeSwiftUITests/LaunchScreenTests.swift
BeeSwiftUITests/BeeSwiftUITests.swift
BeeSwiftUITests/Info.plist
they could all live under the same group/folder
XCTAssertTrue(app.textFields["Email or username"].exists) | ||
} | ||
|
||
func testPerformanceExample() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just as well remove this
fastlane/screenshots/screenshots.html | ||
|
||
# scan temporary files | ||
fastlane/test_output |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
configured to ignore this but files under this dir had become part of the repo in bad3695
how about we delete the generated report files (the ones being ignored here)?
No description provided.