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
You can't use a generated mock inside of a #Preview. The workaround is to use a preview struct that conforms to PreviewProvider instead, but it would be nice to be able to use #Preview.
Example:
@MockedprotocolDependency{varvalue:Int{get}}
// even in a new file
#Preview {letdependencyMock=DependencyMock() // not found
}