Skip to content

Commit

Permalink
updated check for AWS Device farm
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Espinola committed Jun 20, 2024
1 parent b9d42bd commit 57257f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Example/CreativeUITest/CreativeUITest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ final class CreativeUITest: XCTestCase, BaseXCTestCase {
.tapOnPushMeToCreative()
.addDelay(seconds: 4)

CreativePage.tapOnCloseCreative()
CreativePage
.tapOnCloseCreative()
.addDelay()

HomePage.verifyPushMeToCreativeIsHittable()
}
Expand Down
2 changes: 1 addition & 1 deletion Example/CreativeUITest/Protocols/BaseXCTestCase.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ extension BaseXCTestCase {
var canLaunchExternalApps: Bool {
ProcessInfo
.processInfo
.environment["COM_ATTENTIVE_EXAMPLE_HOST"] == "local"
.environment["COM_ATTENTIVE_EXAMPLE_HOST"] != "device_farm"
}
}

0 comments on commit 57257f0

Please sign in to comment.