mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-14 03:41:00 +00:00
14 lines
330 B
Rust
14 lines
330 B
Rust
![]() |
use flowy_user::prelude::*;
|
||
|
|
||
|
#[tokio::test]
|
||
|
async fn user_register_test() {
|
||
|
let server = UserServerImpl {};
|
||
|
|
||
|
let params = SignUpParams {
|
||
|
email: "annie@appflowy.io".to_string(),
|
||
|
name: "annie".to_string(),
|
||
|
password: "123".to_string(),
|
||
|
};
|
||
|
let result = server.sign_up(params).await.unwrap();
|
||
|
}
|