mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-05-14 11:05:32 -04:00
This adds additional checks for each room updates, and works around a few race conditions, notably one where the server would send a remote echo for a message, but not update the computed unread_notification_counts immediately. This tends to make the test more stable, in that each response is well known and now properly tested.
32 lines
1.0 KiB
TOML
32 lines
1.0 KiB
TOML
[package]
|
|
name = "matrix-sdk-integration-testing"
|
|
description = "Internal integration testing for matrix-sdk crate"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dev-dependencies]
|
|
assert_matches = { workspace = true }
|
|
assert_matches2 = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
assign = "1"
|
|
eyeball = { workspace = true }
|
|
eyeball-im = { workspace = true }
|
|
futures = { version = "0.3.29", features = ["executor"] }
|
|
futures-core = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
http = "0.2.11"
|
|
matrix-sdk = { workspace = true, default-features = true, features = ["testing", "qrcode"] }
|
|
matrix-sdk-ui = { workspace = true, default-features = true }
|
|
matrix-sdk-test = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
rand = { workspace = true }
|
|
stream_assert = "0.1.1"
|
|
reqwest = "0.11.20"
|
|
serde_json = "1.0.108"
|
|
tempfile = "3.3.0"
|
|
tokio = { workspace = true, features = ["rt", "rt-multi-thread", "macros"] }
|
|
tracing = { workspace = true }
|
|
wiremock = { workspace = true }
|
|
json-structural-diff = "0.1.0"
|