diff --git a/crates/carddav/tests/integration_test.rs b/crates/carddav/tests/integration_test.rs deleted file mode 100644 index 42cf6a9..0000000 --- a/crates/carddav/tests/integration_test.rs +++ /dev/null @@ -1,11 +0,0 @@ -use actix_web::{web, App}; -use rustical_carddav::configure_dav; - -#[actix_web::test] -async fn test_asd() { - let app = App::new().service(web::scope("/carddav").configure( - |config| configure_dav(config, auth_provider, store) - )); - let app = actix_web::test::init_service() - assert!(false); -}