polywrap_tests_utils 0.1.11

Utilities for testing Polywrap Client
Documentation
1
2
3
4
5
6
7
8
use std::path::{Path, PathBuf};

pub fn get_tests_path() -> Result<PathBuf, ()> {
    let path = Path::new("../../packages/tests-utils/cases")
        .canonicalize()
        .unwrap();
    Ok(path)
}