File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
packages/quick_actions/quick_actions_ios/example/ios/RunnerUITests Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,10 @@ class RunnerUITests: XCTestCase {
36
36
exampleApp = nil
37
37
}
38
38
39
- func testQuickActionWithFreshStart( ) {
39
+ func testQuickActionWithFreshStart( ) throws {
40
+ // See https://github.com/flutter/flutter/issues/169928
41
+ throw XCTSkip ( " Temporarily disabled " )
42
+
40
43
let springboard = XCUIApplication ( bundleIdentifier: " com.apple.springboard " )
41
44
let quickActionsAppIcon = springboard. icons [ " quick_actions_example " ]
42
45
@@ -53,7 +56,10 @@ class RunnerUITests: XCTestCase {
53
56
XCTAssert ( actionTwoConfirmation. exists)
54
57
}
55
58
56
- func testQuickActionWhenAppIsInBackground( ) {
59
+ func testQuickActionWhenAppIsInBackground( ) throws {
60
+ // See https://github.com/flutter/flutter/issues/169928
61
+ throw XCTSkip ( " Temporarily disabled " )
62
+
57
63
exampleApp. launch ( )
58
64
59
65
let actionsReady = exampleApp. otherElements [ " actions ready " ]
You can’t perform that action at this time.
0 commit comments