fix password

This commit is contained in:
John Smith
2023-05-27 18:07:24 +01:00
parent 3b96f75c94
commit 699c0db3db
6 changed files with 55 additions and 26 deletions

View File

@@ -31,73 +31,73 @@ pub fn setup() -> () {
}
#[wasm_bindgen_test]
async fn run_test_host_interface() {
async fn wasm_test_host_interface() {
setup();
test_host_interface::test_all().await;
}
#[wasm_bindgen_test]
async fn run_test_types() {
async fn wasm_test_types() {
setup();
test_types::test_all().await;
}
#[wasm_bindgen_test]
async fn run_test_veilid_core() {
async fn wasm_test_veilid_core() {
setup();
test_veilid_core::test_all().await;
}
#[wasm_bindgen_test]
async fn test_veilid_config() {
async fn wasm_test_veilid_config() {
setup();
test_veilid_config::test_all().await;
}
#[wasm_bindgen_test]
async fn run_test_connection_table() {
async fn wasm_test_connection_table() {
setup();
test_connection_table::test_all().await;
}
#[wasm_bindgen_test]
async fn run_test_signed_node_info() {
async fn wasm_test_signed_node_info() {
setup();
test_signed_node_info::test_all().await;
}
#[wasm_bindgen_test]
async fn exec_test_table_store() {
async fn wasm_test_table_store() {
setup();
test_table_store::test_all().await;
}
#[wasm_bindgen_test]
async fn exec_test_protected_store() {
async fn wasm_test_protected_store() {
setup();
test_protected_store::test_all().await;
}
#[wasm_bindgen_test]
async fn exec_test_crypto() {
async fn wasm_test_crypto() {
setup();
test_crypto::test_all().await;
}
#[wasm_bindgen_test]
async fn exec_test_envelope_receipt() {
async fn wasm_test_envelope_receipt() {
setup();
test_envelope_receipt::test_all().await;
}
#[wasm_bindgen_test]
async fn veilid_api__test_serialize_rkyv() {
async fn wasm_test_serialize_rkyv() {
setup();
veilid_api::test_serialize_rkyv::test_all().await;
test_serialize_rkyv::test_all().await;
}
#[wasm_bindgen_test]
async fn routing_table__test_serialize() {
async fn wasm_test_routing_table_serialize() {
setup();
routing_table::test_serialize::test_all().await;
test_routing_table_serialize::test_all().await;
}