Added serialization tests to iOS/Android and wasm

This commit is contained in:
Teknique
2023-05-25 10:42:25 -07:00
parent ff711080ab
commit f9a9949466
2 changed files with 18 additions and 1 deletions

View File

@@ -89,3 +89,15 @@ async fn exec_test_envelope_receipt() {
setup();
test_envelope_receipt::test_all().await;
}
#[wasm_bindgen_test]
async fn veilid_api__test_serialize_rkyv() {
setup();
veilid_api::test_serialize_rkyv::test_all().await;
}
#[wasm_bindgen_test]
async fn routing_table__test_serialize() {
setup();
routing_table::test_serialize::test_all().await;
}