An easy-to-host PDS on the ATProtocol, iPhone and MacOS. Maintain control of your keys and data, always.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

test(identity-wallet): add resolve_handle unit tests

authored by

Malpercio and committed by
Tangled
f727ac8d 52b54aa4

+3 -1
+3 -1
apps/identity-wallet/src-tauri/src/pds_client.rs
··· 374 374 let client = PdsClient::new(); 375 375 376 376 // Use a handle that will fail both DNS and HTTP (valid domain structure but non-existent) 377 - let result = client.resolve_handle("test-nonexistent-12345.example.com").await; 377 + let result = client 378 + .resolve_handle("test-nonexistent-12345.example.com") 379 + .await; 378 380 379 381 // Should return HandleNotFound since both DNS and HTTP will fail 380 382 match result {