Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
review
  • Loading branch information
Chris Yang committed Feb 24, 2021
commit 99425b8f9c8d6b1d55a4d83edb9205696fd64887
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ task:

task:
# don't run on release tags since it creates O(n^2) tasks where n is the number of plugins
only_if: $CIRRUS_TAG .cirrus.yml== ''
only_if: $CIRRUS_TAG == ''
use_compute_credits: $CIRRUS_USER_COLLABORATOR == 'true'
osx_instance:
image: big-sur-xcode-12.3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,12 @@ - (void)setUp {
- (void)testQuickAction {
XCUIApplication *app = [[XCUIApplication alloc] init];
[app launch];
os_log_error(OS_LOG_DEFAULT, "%@", app.debugDescription);
XCUIElement *actionsReady = app.otherElements[@"actions ready"];
if (![actionsReady waitForExistenceWithTimeout:kElementWaitingTime]) {
os_log_error(OS_LOG_DEFAULT, "%@", app.debugDescription);
XCTFail(@"Failed due to not able to find the actionsReady in the app with %@ seconds",
@(kElementWaitingTime));
}
os_log_error(OS_LOG_DEFAULT, "%@", app.debugDescription);

[[XCUIDevice sharedDevice] pressButton:XCUIDeviceButtonHome];

Expand Down