not working smtp test

This commit is contained in:
Priec
2026-06-19 10:40:43 +02:00
parent 7cba3d9eba
commit ebb208baba
5 changed files with 143 additions and 15 deletions

View File

@@ -50,6 +50,7 @@ async fn can_create_with_password() {
email: "test@framework.com".to_string(),
password: "1234".to_string(),
name: "framework".to_string(),
account_type: Some("personal".to_string()),
};
let res = Model::create_with_password(&boot.app_context.db, &params).await;
@@ -78,6 +79,7 @@ async fn handle_create_with_password_with_duplicate() {
email: "user1@example.com".to_string(),
password: "1234".to_string(),
name: "framework".to_string(),
account_type: Some("personal".to_string()),
},
)
.await;