Skip to content

Commit db36cfa

Browse files
Skip quick_actions XCUITests
1 parent 198eab9 commit db36cfa

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

packages/quick_actions/quick_actions_ios/example/ios/RunnerUITests/RunnerUITests.swift

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ class RunnerUITests: XCTestCase {
3636
exampleApp = nil
3737
}
3838

39-
func testQuickActionWithFreshStart() {
39+
func testQuickActionWithFreshStart() throws {
40+
// See https://github.com/flutter/flutter/issues/169928
41+
throw XCTSkip("Temporarily disabled")
42+
4043
let springboard = XCUIApplication(bundleIdentifier: "com.apple.springboard")
4144
let quickActionsAppIcon = springboard.icons["quick_actions_example"]
4245

@@ -53,7 +56,10 @@ class RunnerUITests: XCTestCase {
5356
XCTAssert(actionTwoConfirmation.exists)
5457
}
5558

56-
func testQuickActionWhenAppIsInBackground() {
59+
func testQuickActionWhenAppIsInBackground() throws {
60+
// See https://github.com/flutter/flutter/issues/169928
61+
throw XCTSkip("Temporarily disabled")
62+
5763
exampleApp.launch()
5864

5965
let actionsReady = exampleApp.otherElements["actions ready"]

0 commit comments

Comments
 (0)