element-x-ada/features/wallet/test/build.gradle.kts
Kayos feb99a2518 fix(wallet): document sendRaw SDK limitation, fix all unit test failures — Phase 1 clean
- 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
2026-03-27 14:44:08 -07:00

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)
}