We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7289eb7 commit f67ac4eCopy full SHA for f67ac4e
WorkflowSwiftUI/Tests/PreferredContentSizeTests.swift
@@ -7,7 +7,9 @@ import XCTest
7
8
final class PreferredContentSizeTests: XCTestCase {
9
func test_preferredContentSize() throws {
10
- guard #unavailable(iOS 18.0) else {
+ // FIXME: actually solve whatever the problem is here
11
+ let osMajorVersion = ProcessInfo.processInfo.operatingSystemVersion.majorVersion
12
+ guard osMajorVersion < 18 else {
13
try XCTSkipIf(true, "Intrinsic content size does not update unless hosted in an actual app on iOS 18")
14
return
15
}
0 commit comments