Skip to content

Commit

Permalink
Skip Export Tests on visionOS
Browse files Browse the repository at this point in the history
  • Loading branch information
PSchmiedmayer committed Oct 15, 2024
1 parent 543d2e9 commit 57b4e65
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Tests/UITests/TestAppUITests/TestAppUITests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Check warning on line 51 in Tests/UITests/TestAppUITests/TestAppUITests.swift

View workflow job for this annotation

GitHub Actions / Build and Test UI Tests visionOS (Release, TestApp-visionOS-Release.xcresult, TestApp-visionOS-Re... / Test using xcodebuild or run fastlane

code after 'throw' will never be executed

Check warning on line 51 in Tests/UITests/TestAppUITests/TestAppUITests.swift

View workflow job for this annotation

GitHub Actions / Build and Test UI Tests visionOS (Release, TestApp-visionOS-Release.xcresult, TestApp-visionOS-Re... / Test using xcodebuild or run fastlane

code after 'throw' will never be executed
let filesApp = XCUIApplication(bundleIdentifier: "com.apple.DocumentsApp")
let maxRetries = 10
Expand Down

0 comments on commit 57b4e65

Please sign in to comment.