diff --git a/Tests/TextStoryTests/TextViewTests.swift b/Tests/TextStoryTests/TextViewTests.swift index 746cc85..1f7ec35 100644 --- a/Tests/TextStoryTests/TextViewTests.swift +++ b/Tests/TextStoryTests/TextViewTests.swift @@ -9,6 +9,8 @@ extension NSTextView { #endif final class TextViewTests: XCTestCase { + #if !os(visionOS) + // this test hangs in GitHub actions for some reason... @MainActor func testProgrammaticModificationSupportsUndo() throws { let textView = UndoSettingTextView() @@ -26,4 +28,5 @@ final class TextViewTests: XCTestCase { XCTAssertEqual(textView.text, "") XCTAssertEqual(textView.selectedRange, NSRange(0..<0)) } + #endif }