-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Explain how .provide()
can not be called imperatively to override implementations
#142
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Does the new |
Not exactly. With setup({
actors: {
fetchUser: fromPromise(() => fetch("/user")),
},
})
.createMachine({})
.provide({
actors: {
fetchUser: fromPromise(() => Promise.resolve({ name: "Kevin" })),
},
}); |
}); | ||
|
||
// This will NOT utilize the provided implementations. | ||
const feedbackActor = interpret(feedbackMachine).start(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be createActor
.
// Do NOT do this! | ||
const feedbackMachine = createMachine({...}); | ||
|
||
feedbackMachine.provide({ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Assign this to a new machine var and pass to createActor(newMachine)
No description provided.