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
We've begun the transition to the @Dependency mechanism with PR #3399 where we converted the single function dependency
vardate:@Sendable()->Date
to use the built in
@Dependency(\.date.now)varnow
mechanism.
A follow up PR #3438 does the some for a group of dependencies that are part of what's typically modelled in a "client" via the @DependencyClient macro.
These are basically the two types of dependencies we need to replace.
Once we have completed this transition, i.e. eliminated all of AppEnvironment, we have the opportunity to run tests that use dependencies in parallel.
The text was updated successfully, but these errors were encountered:
We've begun the transition to the
@Dependency
mechanism with PR #3399 where we converted the single function dependencyto use the built in
mechanism.
A follow up PR #3438 does the some for a group of dependencies that are part of what's typically modelled in a "client" via the
@DependencyClient
macro.These are basically the two types of dependencies we need to replace.
Once we have completed this transition, i.e. eliminated all of
AppEnvironment
, we have the opportunity to run tests that use dependencies in parallel.The text was updated successfully, but these errors were encountered: