chore: Remove blocking read strings

This commit is contained in:
Jayson Reis 2026-02-18 15:52:07 +00:00 committed by Chummy
parent bc0be9a3c1
commit b9af601943
26 changed files with 331 additions and 243 deletions

View file

@ -191,8 +191,8 @@ mod tests {
}
}
#[test]
fn integrate_creates_files() {
#[tokio::test]
async fn integrate_creates_files() {
let tmp = std::env::temp_dir().join("zeroclaw-test-integrate");
let _ = fs::remove_dir_all(&tmp);
@ -203,11 +203,15 @@ mod tests {
assert!(path.join("SKILL.toml").exists());
assert!(path.join("SKILL.md").exists());
let toml = fs::read_to_string(path.join("SKILL.toml")).unwrap();
let toml = tokio::fs::read_to_string(path.join("SKILL.toml"))
.await
.unwrap();
assert!(toml.contains("name = \"test-skill\""));
assert!(toml.contains("stars = 42"));
let md = fs::read_to_string(path.join("SKILL.md")).unwrap();
let md = tokio::fs::read_to_string(path.join("SKILL.md"))
.await
.unwrap();
assert!(md.contains("# test-skill"));
assert!(md.contains("A test skill for unit tests"));