mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-19 16:01:23 +00:00
Don't unwrap mutex lock in headless testing
We don't worry about poisoning and it causes too many test failures if it's turned on!
This commit is contained in:
@ -677,7 +677,7 @@ impl Project {
|
||||
lazy_static! {
|
||||
static ref MUTEX: Mutex<()> = Mutex::new(());
|
||||
}
|
||||
let _lock = MUTEX.lock().unwrap();
|
||||
let _lock = MUTEX.lock();
|
||||
|
||||
let mut cmd = self.npm();
|
||||
cmd.arg("run")
|
||||
|
Reference in New Issue
Block a user