From bd23f5b437c3edf387cd9451668b3bb736ed46ff Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Sat, 1 Jul 2023 16:16:46 +0200 Subject: [PATCH] Require `clock` feature for `wasm` tests --- tests/wasm.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/wasm.rs b/tests/wasm.rs index 3cc3dc0390..b534f0a315 100644 --- a/tests/wasm.rs +++ b/tests/wasm.rs @@ -8,6 +8,7 @@ #![cfg(all( target_arch = "wasm32", feature = "wasmbind", + feature = "clock", not(any(target_os = "emscripten", target_os = "wasi")) ))]