Start blob service locally. Paste the following code at the end of lib.rs file:
```
#[tokio::test]
async fn init_test() {
let upload_state = initialize_upload_state().await.unwrap();
}
```
Run cargo test from project root. Test should pass. Now kill blob service and run test again. Test should fail with message that it cannot connect to blob service.