Skip to content
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

Bump SpeziFirebase and SpeziAccount #83

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions ENGAGEHF.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
archiveVersion = 1;
classes = {
};
objectVersion = 55;
objectVersion = 60;
objects = {

/* Begin PBXBuildFile section */
Expand Down Expand Up @@ -1199,7 +1199,7 @@
};
};
buildConfigurationList = 653A2548283387FE005D4D48 /* Build configuration list for PBXProject "ENGAGEHF" */;
compatibilityVersion = "Xcode 13.0";
compatibilityVersion = "Xcode 15.0";
developmentRegion = en;
hasScannedForEncodings = 0;
knownRegions = (
Expand Down Expand Up @@ -1981,7 +1981,7 @@
repositoryURL = "https://github.com/StanfordSpezi/SpeziAccount.git";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = "2.0.0-beta.4";
minimumVersion = "2.0.0-beta.7";
};
};
2FE5DC6529EDD894004B9AB4 /* XCRemoteSwiftPackageReference "SpeziContact" */ = {
Expand All @@ -2005,7 +2005,7 @@
repositoryURL = "https://github.com/StanfordSpezi/SpeziFirebase.git";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = "2.0.0-beta.1";
minimumVersion = "2.0.0-beta.3";
};
};
2FE5DC8229EDD934004B9AB4 /* XCRemoteSwiftPackageReference "SpeziQuestionnaire" */ = {
Expand Down Expand Up @@ -2093,7 +2093,7 @@
repositoryURL = "https://github.com/StanfordSpezi/SpeziDevices.git";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 1.2.1;
minimumVersion = 1.3.0;
};
};
A9A0BF012C13121D00B8F3F3 /* XCRemoteSwiftPackageReference "SpeziNetworking" */ = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/StanfordBDHG/HealthKitOnFHIR.git",
"state" : {
"revision" : "c24e316311ff9813cb1fe32cd8820bcca6e5e7f2",
"version" : "0.2.10"
"branch" : "fix/swiftlint-dependency",
"revision" : "4c4c4d7020016e01904e07763a39088e5a4e132c"
}
},
{
Expand Down Expand Up @@ -195,8 +195,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/StanfordSpezi/SpeziAccount.git",
"state" : {
"revision" : "6b1603d2dd95b1787cfb0cbdce32a4b4bebb79ae",
"version" : "2.0.0-beta.5"
"revision" : "7e78ee9e7e4df2071a18ac0fc722671ac1dcfac4",
"version" : "2.0.0-beta.7"
}
},
{
Expand All @@ -222,17 +222,17 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/StanfordSpezi/SpeziDevices.git",
"state" : {
"revision" : "cfba7691b6211bb2f566a8c263ff973921ee555b",
"version" : "1.2.2"
"revision" : "dc8dcd53773b9bb4041870b0f65cec32f7ed5108",
"version" : "1.3.0"
}
},
{
"identity" : "spezifirebase",
"kind" : "remoteSourceControl",
"location" : "https://github.com/StanfordSpezi/SpeziFirebase.git",
"state" : {
"revision" : "12e7b779a3339737ea100b4eb7491072d4e83cd5",
"version" : "2.0.0-beta.2"
"revision" : "d0cb58fc43c99e632446b43c5cb56943f8339bf2",
"version" : "2.0.0-beta.3"
}
},
{
Expand Down Expand Up @@ -310,7 +310,7 @@
{
"identity" : "swift-argument-parser",
"kind" : "remoteSourceControl",
"location" : "https://github.com/apple/swift-argument-parser",
"location" : "https://github.com/apple/swift-argument-parser.git",
"state" : {
"revision" : "41982a3656a71c768319979febd796c6fd111d5c",
"version" : "1.5.0"
Expand Down
4 changes: 1 addition & 3 deletions ENGAGEHFUITests/AccountTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,16 @@
XCTAssertTrue(app.navigationBars.buttons["Your Account"].waitForExistence(timeout: 2))
app.navigationBars.buttons["Your Account"].tap()

XCTAssert(app.buttons["Logout"].waitForExistence(timeout: 2))

Check failure on line 35 in ENGAGEHFUITests/AccountTests.swift

View workflow job for this annotation

GitHub Actions / Build and Test / Test using xcodebuild or run fastlane

testInAppLogon, XCTAssertTrue failed
app.buttons["Logout"].tap()

let alert = "Are you sure you want to logout?"
XCTAssert(app.alerts[alert].waitForExistence(timeout: 6.0))
app.alerts[alert].buttons["Logout"].tap()

sleep(2)


// Login
if app.buttons["I Already Have an Account"].waitForExistence(timeout: 2.0) {
if app.buttons["I Already Have an Account"].waitForExistence(timeout: 6.0) {
app.buttons["I Already Have an Account"].tap()
}

Expand Down
Loading