Skip to content

Commit 6e2efe2

Browse files
Merge pull request #6624 from bogdan-stacks/test/ignore-runtime-costs-test
Ignore runtime_limit test
2 parents 4d8e162 + 486f236 commit 6e2efe2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

stacks-common/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ sha2 = { version = "0.10" }
8484
toml = { workspace = true }
8585

8686
[features]
87-
default = ["rusqlite", "vrf", "developer-mode", "ctrlc-handler", "rand"]
87+
default = ["rusqlite", "vrf", "developer-mode", "ctrlc-handler", "rand", "clarity-wasm"]
8888
developer-mode = []
8989
# Enables graceful shutdown handling for Ctrl+C (SIGINT) signals.
9090
# This pulls in the `nix` or `winapi` dependency.
@@ -103,3 +103,4 @@ wasm = ["developer-mode", "getrandom"]
103103
# Wasm-specific features for easier configuration
104104
wasm-web = ["rand", "getrandom/js", "libsecp256k1/static-context"]
105105
wasm-deterministic = ["getrandom/custom"]
106+
clarity-wasm = []

stacks-node/src/tests/integrations.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1996,6 +1996,7 @@ fn make_keys(seed: &str, count: u64) -> Vec<StacksPrivateKey> {
19961996
}
19971997

19981998
#[test]
1999+
#[cfg(not(feature = "clarity-wasm"))]
19992000
fn block_limit_runtime_test() {
20002001
let mut conf = new_test_conf();
20012002

0 commit comments

Comments
 (0)