diff --git a/.github/workflows/build-scaffold-holochain-runtime.yaml b/.github/workflows/build-scaffold-holochain-runtime.yaml index cf6501e4..cac58bf7 100644 --- a/.github/workflows/build-scaffold-holochain-runtime.yaml +++ b/.github/workflows/build-scaffold-holochain-runtime.yaml @@ -44,6 +44,7 @@ jobs: - name: Test scaffold-holochain-runtime run: | + cargo test -p scaffold-holochain-runtime sh ./crates/scaffold-holochain-runtime/run_test.sh - name: Cache scaffold-holochain-runtime diff --git a/.github/workflows/build-scaffold-tauri-app.yaml b/.github/workflows/build-scaffold-tauri-app.yaml index 97d4a613..1d40fef9 100644 --- a/.github/workflows/build-scaffold-tauri-app.yaml +++ b/.github/workflows/build-scaffold-tauri-app.yaml @@ -44,6 +44,7 @@ jobs: - name: Test scaffold-tauri-app run: | + cargo test -p scaffold-tauri-app sh ./crates/scaffold-tauri-app/run_test.sh - name: Cache scaffold-tauri-app diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 35b96f88..c3e7092b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,5 +39,5 @@ jobs: with: name: darksoil-studio - - name: Run tests + - name: Run flake tests run: nix flake check -L diff --git a/crates/tauri-plugin-holochain/src/lib.rs b/crates/tauri-plugin-holochain/src/lib.rs index ae89633a..1f5c57e4 100644 --- a/crates/tauri-plugin-holochain/src/lib.rs +++ b/crates/tauri-plugin-holochain/src/lib.rs @@ -64,7 +64,7 @@ impl HolochainPlugin { /// Build a window that opens the UI for the given holochain web-app. /// /// * `app_id` - the app whose UI will be open. The must have been installed before with `Self::install_web_app()`. - /// * `url_path` - url path for the window that will be opened. + /// * `url_path` - [url path](https://developer.mozilla.org/en-US/docs/Web/API/URL/pathname) for the window that will be opened. pub fn web_happ_window_builder( &self, app_id: InstalledAppId, @@ -126,7 +126,7 @@ impl HolochainPlugin { /// * `label` - the identifier of the window. /// * `enable_admin_websocket` - whether the window should have direct access to the `AdminWebsocket`'s API. /// * `enabled_app` - an optional `app_id` for the app whose `AppWebsocket` should be enabled in the window. - /// * `url_path` - url path for the window that will be opened. + /// * `url_path` - [url path](https://developer.mozilla.org/en-US/docs/Web/API/URL/pathname) for the window that will be opened. pub fn main_window_builder( &self, label: String,