Clear wording
CI / Lint (pull_request) Successful in 1m3s
CI / Test (pull_request) Successful in 1m22s
Release Drafter / Update release notes draft (pull_request) Successful in 5s

This commit is contained in:
2026-09-08 15:28:33 -06:00
parent c8b9ddc1e5
commit f7eacf58d1
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -39,8 +39,8 @@ export default class PlacePaymentMethods extends Component {
let description = 'No Bitcoin';
if (!isDenied) {
description = this.payment.bitcoin.lightning
? 'Bitcoin (Lightning)'
: 'Bitcoin (On-chain)';
? 'Bitcoin (Lightning) accepted'
: 'Bitcoin (On-chain) accepted';
}
list.push({
id: 'bitcoin',
@@ -118,7 +118,7 @@ module('Integration | Component | place-payment-methods', function (hooks) {
.doesNotHaveAttribute('title');
assert
.dom('[data-test-payment-method="bitcoin"]')
.hasAttribute('aria-description', 'Bitcoin (Lightning)');
.hasAttribute('aria-description', 'Bitcoin (Lightning) accepted');
assert
.dom('[data-test-payment-method="bitcoin"] > .icon')
.hasAttribute('style', /width:17px;height:22px;color:currentColor/);