mirror of
https://github.com/fluencelabs/wasm-bindgen
synced 2025-06-20 08:16:31 +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! {
|
lazy_static! {
|
||||||
static ref MUTEX: Mutex<()> = Mutex::new(());
|
static ref MUTEX: Mutex<()> = Mutex::new(());
|
||||||
}
|
}
|
||||||
let _lock = MUTEX.lock().unwrap();
|
let _lock = MUTEX.lock();
|
||||||
|
|
||||||
let mut cmd = self.npm();
|
let mut cmd = self.npm();
|
||||||
cmd.arg("run")
|
cmd.arg("run")
|
||||||
|
Reference in New Issue
Block a user