Ability to test Rust side without Dart #642
Closed
shakhzodkudratov
started this conversation in
Ideas
Replies: 3 comments 1 reply
-
|
Hi :) Running tests without Flutter, using only Rust code would be easy using If you need other information, please let me know! |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
We're already using something like that for our CI: I think this is the closest example you can get :) |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Discovered that you actually can implement Handler instead of Notifiable to get resulting output. I should have to read the docs carefully. Now library turned from good one to AWESOME! #[tokio::test]
async fn test() {
let mut actors = create_actors().await;
let res: Response = actors
.actor
.send(Request {})
.await
.unwrap();
println!("res: {res:?}");
assert!(false);
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello! First of all, thank you very much for the library. It is really the best of both worlds. But working in a team in a different hardware leads to a long time waiting for a flutter restart. I am interested in running tests without running Flutter. Is it possible/planned to add feature like this?
Beta Was this translation helpful? Give feedback.
All reactions