Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::{thread, time::Duration};

use aok::{Result, OK};
use waiting::Waiting;

#[test]
fn test() -> Result<()> {
  let ing = Waiting::new("refresh version");
  thread::sleep(Duration::from_secs(3));
  ing.end("✅ task done");
  OK
}