remove login test

This commit is contained in:
bitfl0wer 2023-05-27 22:53:40 +02:00
parent 02a41b415f
commit e83b901e78
1 changed files with 0 additions and 19 deletions

View File

@ -21,22 +21,3 @@ async fn test_registration() {
bundle.instance.register_account(&reg).await.unwrap();
common::teardown(bundle).await;
}
#[tokio::test]
async fn test_login() {
let mut bundle = common::setup().await;
let login_schema = types::LoginSchema::new(
"integrationtestuser".to_string(),
None,
Some(false),
None,
None,
None,
);
bundle
.instance
.login_account(&login_schema.unwrap())
.await
.unwrap();
common::teardown(bundle).await;
}