From 57b4e653c2296085b56445bd743e044de08214df Mon Sep 17 00:00:00 2001 From: Paul Schmiedmayer Date: Tue, 15 Oct 2024 11:58:31 +0200 Subject: [PATCH] Skip Export Tests on visionOS --- Tests/UITests/TestAppUITests/TestAppUITests.swift | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Tests/UITests/TestAppUITests/TestAppUITests.swift b/Tests/UITests/TestAppUITests/TestAppUITests.swift index 0601705..d842d30 100644 --- a/Tests/UITests/TestAppUITests/TestAppUITests.swift +++ b/Tests/UITests/TestAppUITests/TestAppUITests.swift @@ -44,6 +44,10 @@ class TestAppUITests: XCTestCase { } func testChatExport() throws { // swiftlint:disable:this function_body_length + #if os(visionOS) + throw XCTSkip("VisionOS is unstable and are skipped at the moment") + #endif + let app = XCUIApplication() let filesApp = XCUIApplication(bundleIdentifier: "com.apple.DocumentsApp") let maxRetries = 10