* add llamacpp plugin * Refactor llamacpp plugin * add utils plugin * remove utils folder * add hardware implementation * add utils folder + move utils function * organize cargo files * refactor utils src * refactor util * apply fmt * fmt * Update gguf + reformat * add permission for gguf commands * fix cargo test windows * revert yarn lock * remove cargo.lock for hardware plugin * ignore cargo.lock file * Fix hardware invoke + refactor hardware + refactor tests, constants * use api wrapper in extension to invoke hardware call + api wrapper build integration * add newline at EOF (per Akarshan) * add vi mock for getSystemInfo
17 lines
380 B
Rust
17 lines
380 B
Rust
use crate::commands::*;
|
|
use tauri::test::mock_app;
|
|
|
|
#[test]
|
|
fn test_system_info() {
|
|
let app = mock_app();
|
|
let info = get_system_info(app.handle().clone());
|
|
println!("System Static Info: {:?}", info);
|
|
}
|
|
|
|
#[test]
|
|
fn test_system_usage() {
|
|
let app = mock_app();
|
|
let usage = get_system_usage(app.handle().clone());
|
|
println!("System Usage Info: {:?}", usage);
|
|
}
|