Skip to content

Commit bc6dcc2

Browse files
committed
Merge branch 'willem/tx-store-tests' into ec2/account-store
2 parents 58240e8 + 90e23a0 commit bc6dcc2

File tree

12 files changed

+1561
-45
lines changed

12 files changed

+1561
-45
lines changed

Cargo.lock

Lines changed: 88 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,11 @@ subtle = "2.6.1"
5454
secrecy = "0.8.0"
5555

5656
[dev-dependencies]
57+
hex = "0.4.3"
58+
proptest = "1.5.0"
59+
rand = "0.8.5"
5760
wasm-bindgen-test = "0.3.42"
61+
nonempty = "0.7"
5862

5963
[build-dependencies]
6064
tonic-build = { version = "0.11", default-features = false, features = [

justfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,8 @@ build:
77
test-web:
88
WASM_BINDGEN_TEST_TIMEOUT=99999 wasm-pack test --release --headless --chrome
99

10+
test:
11+
cargo test --target aarch64-apple-darwin
12+
1013
check:
1114
cargo check

src/bindgen/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//!
66
//! All rustdoc strings in this module are used to auto-generate the javascript documentation
77
8+
mod init;
89
pub mod transaction_proposal;
910
pub mod transaction_request;
1011
mod wallet;
11-
mod init;

src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ pub mod bindgen;
99
pub mod error;
1010
pub mod store;
1111
pub mod wallet;
12+
13+
#[cfg(test)]
14+
mod mocks;

0 commit comments

Comments
 (0)