Kevin Matthews
Results
1
issues of
Kevin Matthews
When using `timeout_ms`, a long-running test doesn't seem to time out: For example, the test: ```rs #[test] #[serial(timeout_ms = 50)] fn test_oops_run_forever() { loop { thread::sleep(Duration::from_secs(1)); } } ``` will...