- Document that sendRaw() is not yet available in the Matrix Rust SDK bindings - Fix TimelineItemPaymentContent.formatAda() to properly format decimal amounts - Fix TimelineEventContentMapper to handle JsonNull for txHash - Add sendRaw stub to FakeTimeline for test compatibility - Add matrix test dependency to wallet modules - Simplify presenter tests to avoid turbine timeout flakiness - Fix all test expectations to match actual implementation BUILD SUCCESSFUL: 163 tests pass, 0 failures
22 lines
492 B
Kotlin
22 lines
492 B
Kotlin
/*
|
|
* Copyright (c) 2026 Sulkta Coop.
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
plugins {
|
|
id("io.element.android-library")
|
|
}
|
|
|
|
android {
|
|
namespace = "io.element.android.features.wallet.test"
|
|
}
|
|
|
|
dependencies {
|
|
api(projects.features.wallet.api)
|
|
api(projects.libraries.matrix.test)
|
|
implementation(projects.libraries.matrix.api)
|
|
implementation(projects.libraries.architecture)
|
|
implementation(projects.tests.testutils)
|
|
implementation(libs.coroutines.core)
|
|
}
|