You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[chore]: improve Swift Testing support in test utilities (#341)
migrates test utilities from `XCTest` assertions to analogs provided by
the `CustomDump` and `IssueReporting` libraries. this should fix the
issue where assertion failures would be invisible to client code written
using Swift Testing rather than XCTest.
ideally we should probably add a lint check in the relevant places to
enforce use of the appropriate API, but that will be a separate task.
resolves: #330
XCTFail("Multiple Workflows of type \(Child.self) with key \"\(key)\" used in the same render call. Use a unique key to render multiple Workflows of the same type.",file: file, line: line)
81
+
reportIssue("Multiple Workflows of type \(Child.self) with key \"\(key)\" used in the same render call. Use a unique key to render multiple Workflows of the same type.",filePath: file, line: line)
0 commit comments