12345678910111213141516171819202122 |
- use wasm_bindgen_test::*;
-
- wasm_bindgen_test_configure!(run_in_browser);
-
- #[wasm_bindgen_test]
- async fn pass() {
- console_log!("Test Passed");
- }
-
- #[wasm_bindgen_test]
- async fn key_exchange() {
- // temporary for docker testing
- let resp = reqwest::get("http://key-exchange:3000/meeting").await;
- console_log!("{resp:?}");
- }
-
- #[wasm_bindgen_test]
- async fn sandbox() {
- // temporary for docker testing
- let resp = reqwest::get("http://sandbox:3030").await;
- console_log!("{resp:?}");
- }
|