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 c76beba commit eff6175Copy full SHA for eff6175
WorkflowUI/Tests/XCTestCase+Extensions.swift
@@ -24,7 +24,11 @@ extension XCTestCase {
24
test: (ViewController) throws -> Void
25
) rethrows {
26
guard let rootVC = UIApplication.shared.delegate?.window??.rootViewController else {
27
- XCTFail("Cannot present a view controller in a test host that does not have a root window.")
+ #if SWIFT_PACKAGE
28
+ print("WARNING: Test cannot run in SPM, it requires an app host. Please run WorkflowUI.podspec's tests.")
29
+ #else
30
+ XCTFail("Cannot present a view controller in a test host that does not have a root window.")
31
+ #endif
32
return
33
}
34
0 commit comments